8 lines
165 B
CMake
8 lines
165 B
CMake
set(SRC_FILES
|
|
"Src/Imp/CPP/Main.cpp"
|
|
)
|
|
|
|
add_library(IAERuntime SHARED ${SRC_FILES})
|
|
|
|
target_link_libraries(IAERuntime PRIVATE IAEngine nlohmann_json SDL3::SDL3)
|