You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
enable_language(CXX)
|
|
unset(CMAKE_CXX_SCANDEP_SOURCE)
|
|
|
|
add_executable(noscanning-sf-property
|
|
sources/module-use.cxx)
|
|
set_target_properties(noscanning-sf-property
|
|
PROPERTIES
|
|
CXX_STANDARD 20
|
|
CXX_STANDARD_REQUIRED ON
|
|
CXX_SCAN_FOR_MODULES 0)
|
|
set_source_files_properties(sources/module-use.cxx
|
|
PROPERTIES
|
|
CXX_SCAN_FOR_MODULES 1)
|