summaryrefslogtreecommitdiffstats
path: root/Tests/SetLang/CMakeLists.txt
blob: f3ed86eef97b92e9be436089175d48eddeff88bf (plain)
1
2
3
4
5
6
7
8
9
# test forcing a source file language to c++ from c
project(SetLang)
# 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)