2023-09-15 13:45:57 +02:00
|
|
|
enable_language(CXX)
|
2023-12-07 09:12:54 +01:00
|
|
|
set(CMAKE_CXX_SCANDEP_SOURCE "")
|
2023-09-15 13:45:57 +02:00
|
|
|
|
|
|
|
add_library(not-cxx-source)
|
|
|
|
target_sources(not-cxx-source
|
|
|
|
PRIVATE
|
|
|
|
sources/cxx-anchor.cxx
|
|
|
|
PUBLIC
|
|
|
|
FILE_SET fs TYPE CXX_MODULES FILES
|
|
|
|
sources/not-compiled.txt)
|
|
|
|
target_compile_features(not-cxx-source
|
|
|
|
PRIVATE
|
|
|
|
cxx_std_20)
|