mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
14 lines
329 B
CMake
14 lines
329 B
CMake
set(CMAKE_EXPERIMENTAL_CXX_IMPORT_STD
|
|
"25d6f6aa-be65-4692-b44e-87b23e96d4e1")
|
|
|
|
cmake_minimum_required(VERSION 3.29)
|
|
project(cxx_modules_import_std CXX)
|
|
|
|
include("${CMAKE_SOURCE_DIR}/../cxx-modules-rules.cmake")
|
|
|
|
add_executable(main
|
|
main.cxx)
|
|
target_compile_features(main PRIVATE cxx_std_23)
|
|
|
|
add_test(NAME main COMMAND main)
|