1 # a simple CXX only test case
4 set(CMAKE_DEBUG_POSTFIX "_test_debug_postfix")
5 add_library(testcxx1 STATIC libcxx1.cxx)
6 add_library(testcxx2 SHARED libcxx2.cxx)
7 add_executable (CxxOnly cxxonly.cxx)
8 target_link_libraries(CxxOnly testcxx1 testcxx2)