Newer
Older
cmake_minimum_required(VERSION 3.10)
# set the project name
project(dusk)
# add the executable
add_executable(dusk ${sources})
target_include_directories(dusk
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
$<INSTALL_INTERFACE:include>
)
target_compile_definitions(dusk
PRIVATE USE_UNIX
)