CMake - Include test project's header file to VS IDE project.

This commit is contained in:
Kimmo Varis 2010-01-05 22:16:53 +02:00
parent 4c2a77db9b
commit a753c41ced
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# Minimal CMake build file to build cppcheck test suite # Minimal CMake build file to build cppcheck test suite
SET(CHECKTEST_HDRS
testsuite.h
)
SET(CHECKTEST_SRCS SET(CHECKTEST_SRCS
testmemleak.cpp testmemleak.cpp
testother.cpp testother.cpp
@ -49,7 +53,7 @@ if (CMAKE_COMPILER_IS_GNUCXX)
endif (CMAKE_COMPILER_IS_GNUCXX) endif (CMAKE_COMPILER_IS_GNUCXX)
include_directories (${CPPCHECK_SOURCE_DIR}/lib) include_directories (${CPPCHECK_SOURCE_DIR}/lib)
ADD_EXECUTABLE(test ${CHECKTEST_SRCS}) ADD_EXECUTABLE(test ${CHECKTEST_SRCS} ${CHECKTEST_HDRS})
TARGET_LINK_LIBRARIES(test ${CHECK_LIBS}) TARGET_LINK_LIBRARIES(test ${CHECK_LIBS})
# Add custom 'make check' -target # Add custom 'make check' -target