gm3p/testapp/CMakeLists.txt
2020-07-18 21:06:17 +02:00

13 lines
192 B
CMake

add_executable(testapp
"main.cpp"
)
target_include_directories(testapp PUBLIC
${GMP_INCLUDE_DIR}
${CMAKE_SOURCE_DIR}/include
)
target_link_libraries(testapp PUBLIC
${GMP_LIBRARY}
gm3p
)