Added basic integer prototype

This commit is contained in:
Robert 2020-07-18 21:06:17 +02:00
parent 0061f9692f
commit 95282f7d1a
7 changed files with 162 additions and 6 deletions

13
testapp/CMakeLists.txt Normal file
View file

@ -0,0 +1,13 @@
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
)