mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-13 12:59:55 -05:00
Enable C or CXX (or nothing) as needed in each test case. This will allow us to add test cases that do not enable CXX.
6 lines
165 B
CMake
6 lines
165 B
CMake
enable_language(CXX)
|
|
|
|
add_executable(main empty.cpp)
|
|
add_executable(Alias::Main ALIAS main)
|
|
target_compile_features(Alias::Main PRIVATE cxx_delegating_constructors)
|