This commit is contained in:
Isuru Samarathunga
2025-11-08 23:46:47 +05:30
parent 042ff451b1
commit 73d26b2f35
41 changed files with 4348 additions and 532 deletions

10
Src/Common/CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
set(SRC_FILES
"imp/cpp/Common.cpp"
)
add_library(Common STATIC ${SRC_FILES})
target_include_directories(Common PUBLIC inc)
target_include_directories(Common PRIVATE imp/hpp)
target_link_libraries(Common PUBLIC IACore SDL3::SDL3 glm::glm pugixml::pugixml)