11 lines
217 B
CMake
11 lines
217 B
CMake
add_library(exceptions STATIC)
|
|
|
|
target_sources(
|
|
exceptions
|
|
|
|
PUBLIC
|
|
FILE_SET cxx_modules TYPE CXX_MODULES FILES
|
|
./src/exception.cppm
|
|
./src/windows.cppm
|
|
./src/posix.cppm
|
|
) |