mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-22 02:52:18 +00:00
13 lines
261 B
Text
13 lines
261 B
Text
|
cmake_minimum_required(VERSION 2.6)
|
||
|
project(tsoscan)
|
||
|
|
||
|
set(TSOSCAN_SOURCES
|
||
|
tsoscan.c
|
||
|
cmd.c
|
||
|
stats.c
|
||
|
)
|
||
|
|
||
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
|
||
|
|
||
|
add_executable(tsoscan ${TSOSCAN_SOURCES})
|
||
|
target_link_libraries(tsoscan iff_static)
|