mysimulation/Tools/hitutils/CMakeLists.txt

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})