Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « dfrotz « frotz « backends - github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cd8ea7e0c828cb02f728add8f46e2d720f8881d (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.6)
file(GLOB SRC common/*.c dumb/*.c)

add_executable(dfrotz ${SRC})

set_target_properties(dfrotz PROPERTIES UNITY_BUILD OFF)

# target_link_libraries(dfrotz)

install(TARGETS dfrotz RUNTIME DESTINATION bin)