mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-22 10:52:20 +00:00
18 lines
No EOL
291 B
CMake
18 lines
No EOL
291 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(hitutils)
|
|
|
|
set(HITDUMP_SOURCES
|
|
hitdump.cpp
|
|
)
|
|
|
|
set(HITASM_SOURCES
|
|
hitasm.cpp
|
|
)
|
|
|
|
set(HITLD_SOURCES
|
|
hitld.cpp
|
|
)
|
|
|
|
add_executable(hitdump ${HITDUMP_SOURCES})
|
|
add_executable(hitasm ${HITASM_SOURCES})
|
|
add_executable(hitld ${HITLD_SOURCES}) |