add raw files

This commit is contained in:
2026-06-09 02:22:28 +08:00
parent eb59d425d1
commit ba7241cc67
431 changed files with 176991 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
cmake_minimum_required(VERSION 3.14)
project(hello_world)
add_executable(
main
./main.cpp
)
target_include_directories(
main
PUBLIC ./include
)
add_library(
eigen
./eigen.cpp
)
target_include_directories(
eigen
PRIVATE ./include/Eigen
)
target_link_libraries(
main
PUBLIC eigen
)
add_executable(
calender
./calender.cpp
)
add_executable(
hello-world
./hello.cpp
)