CMake/Tests/SetLang/CMakeLists.txt

10 lines
362 B
CMake
Raw Normal View History

# test forcing a source file language to c++ from c
project(SetLang)
2007-02-20 18:57:24 +03:00
# force this to be verbose so I can debug a dashboard entry
SET(CMAKE_VERBOSE_MAKEFILE 1)
add_library(foo foo.c)
add_executable(bar bar.c)
set_source_files_properties(foo.c bar.c PROPERTIES LANGUAGE CXX)
target_link_libraries(bar foo)
set_target_properties(bar PROPERTIES LINKER_LANGUAGE CXX)