diff --git a/.gitignore b/.gitignore index b25c15b..1dd44ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ *~ + +config diff --git a/CMakeLists.txt b/CMakeLists.txt index fb7727b..3512422 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ project (cutest C) -add_library (${PROJECT_NAME} CuTest.c) +FILE (GLOB LIB_HDR *.h) +add_library (${PROJECT_NAME} CuTest.c ${LIB_HDR}) add_executable (CuTestTest AllTests.c CuTestTest.c) target_link_libraries (CuTestTest cutest)