blob: ed9a3413502d25321a710265b6294b765c3b4656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# a simple CXX only test case
project (newlineargs CXX)
add_definitions("-DTEST_FLAG_1
-DTEST_FLAG_2")
include_directories(" ${newlineargs_BINARY_DIR}
${newlineargs_SOURCE_DIR} ")
configure_file("${newlineargs_SOURCE_DIR}/libcxx2.h.in"
"${newlineargs_BINARY_DIR}/libcxx2.h")
add_library(testcxx1 libcxx1.cxx)
add_executable (cxxonly cxxonly.cxx)
target_link_libraries(cxxonly testcxx1)
|