Skip to content
Snippets Groups Projects
CMakeLists.txt 417 B
Newer Older
  • Learn to ignore specific revisions
  • Whitney Armstrong's avatar
    Whitney Armstrong committed
    cmake_minimum_required(VERSION 3.10)
    
    # set the project name
    project(dusk)
    
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
    file(GLOB sources src/*.cc)
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
    # add the executable
    add_executable(dusk ${sources})
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
    target_include_directories(dusk 
      PUBLIC
       $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
       $<INSTALL_INTERFACE:include>                                                                      
      )
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
    target_compile_definitions(dusk 
        PRIVATE USE_UNIX
    )