10 lines
179 B
CMake
10 lines
179 B
CMake
add_executable(IAMathTest imp/cpp/Main.cpp)
|
|
|
|
target_compile_options(IAMathTest PRIVATE
|
|
"-g"
|
|
"-O0"
|
|
"-D__IA_DEBUG=1"
|
|
)
|
|
|
|
target_link_libraries(IAMathTest PRIVATE IAMath)
|