Download this file

18 lines (14 with data), 392 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.9)
project (dualmc)
include_directories("${CMAKE_SOURCE_DIR}/include/")
set(EXAMPLE_APP_SOURCES
apps/example/example.cpp
apps/example/main.cpp
)
set(GENTABLES_APP_SOURCES
apps/gentables/gentables.cpp
apps/gentables/main.cpp
)
# build application
add_executable(dmc ${EXAMPLE_APP_SOURCES})
add_executable(gentables ${GENTABLES_APP_SOURCES})