mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Since it can be set in the environment when running the test suite, guard tests which are sensitive to intermediate directory strategy changes with explicit settings.
24 lines
589 B
CMake
24 lines
589 B
CMake
set(CMAKE_INTERMEDIATE_DIR_STRATEGY FULL CACHE STRING "" FORCE)
|
|
|
|
enable_language(CXX)
|
|
set(CMAKE_CXX_SCANDEP_SOURCE "")
|
|
|
|
add_library(export-modules)
|
|
target_sources(export-modules
|
|
PUBLIC
|
|
FILE_SET fs TYPE CXX_MODULES FILES
|
|
sources/module.cxx)
|
|
target_compile_features(export-modules
|
|
PRIVATE
|
|
cxx_std_20)
|
|
set_property(TARGET export-modules
|
|
PROPERTY EXPORT_NAME export-name)
|
|
|
|
install(TARGETS export-modules
|
|
EXPORT exp
|
|
FILE_SET fs DESTINATION "include/cxx/export-modules")
|
|
|
|
install(EXPORT exp
|
|
DESTINATION "lib/cmake/export-modules"
|
|
CXX_MODULES_DIRECTORY "cxx-modules")
|