From b5910573d0b7da7f46c3efbaeb85cb2eaf269980 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 6 Jun 2012 20:16:25 -0700 Subject: [PATCH] include headers for MSVC --- .gitignore | 2 ++ CMakeLists.txt | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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)