9 lines
178 B
CMake
9 lines
178 B
CMake
add_executable(IACoreTest imp/cpp/Main.cpp)
|
|
|
|
target_compile_options(IACoreTest PRIVATE
|
|
"-g"
|
|
"-O0"
|
|
"-D__IA_DEBUG=1"
|
|
)
|
|
|
|
target_link_libraries(IACoreTest PRIVATE IACore) |