2023-12-07 09:12:54 +01:00
|
|
|
cmake_minimum_required(VERSION 3.24...3.28)
|
2023-05-23 16:38:00 +02:00
|
|
|
project(cxx_modules_circular CXX)
|
|
|
|
|
|
|
|
include("${CMAKE_SOURCE_DIR}/../cxx-modules-rules.cmake")
|
|
|
|
|
|
|
|
add_library(circular STATIC)
|
|
|
|
target_sources(circular
|
|
|
|
PUBLIC
|
|
|
|
FILE_SET CXX_MODULES
|
|
|
|
BASE_DIRS
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
FILES
|
|
|
|
circular-a.cppm
|
|
|
|
circular-b.cppm)
|
|
|
|
target_compile_features(circular PUBLIC cxx_std_20)
|