We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a84b28 commit f99e94fCopy full SHA for f99e94f
CMakeLists.txt
@@ -2,3 +2,6 @@ cmake_minimum_required(VERSION 2.8)
2
project(ctry)
3
include_directories(include/)
4
add_library(ctry SHARED src/ctry.c)
5
+
6
+# TESTS
7
+add_subdirectory(tests)
tests/CMakeLists.txt
@@ -0,0 +1,6 @@
1
+cmake_minimum_required(VERSION 2.8)
+project(ctry_tests)
+include_directories(../include/)
+add_executable(test01 test01.c)
+target_link_libraries(test01 ctry)
0 commit comments