11 lines
262 B
CMake
11 lines
262 B
CMake
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)
|