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