forked from ak-fortuna/fortuna
retrieved from https://stackoverflow.com/a/46135882 original author LWimsey <https://stackoverflow.com/users/6651824/lwimsey> (c) 2017 edited and made into a header-only lib by wanderer <a_mirre at utb.cz> (c) 2021
15 lines
388 B
CMake
15 lines
388 B
CMake
# author a_mirre <a_mirre at utb.cz> (c) 2021
|
|
cmake_minimum_required (VERSION 3.20)
|
|
|
|
project (da_threading LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
add_library(da_threading INTERFACE)
|
|
add_library(da_threading::da_threading ALIAS da_threading)
|
|
|
|
target_compile_definitions(da_threading INTERFACE)
|
|
|
|
target_include_directories(da_threading INTERFACE .)
|