include headers for MSVC

This commit is contained in:
Enno Rehling 2012-06-06 20:16:25 -07:00
parent 51df8f5a71
commit b5910573d0
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
*~
config

View File

@ -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)