12 lines
345 B
CMake
12 lines
345 B
CMake
set(SRC_FILES
|
|
"imp/cpp/IAEngine.cpp"
|
|
)
|
|
|
|
add_library(IAEngine STATIC ${SRC_FILES})
|
|
|
|
target_include_directories(IAEngine PUBLIC inc)
|
|
target_include_directories(IAEngine PRIVATE imp/hpp)
|
|
|
|
target_link_libraries(IAEngine PUBLIC IACore)
|
|
target_link_libraries(IAEngine PRIVATE ZLIB::ZLIBSTATIC SDL3::SDL3 SDL3_mixer::SDL3_mixer Freetype::Freetype)
|