mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-22 02:52:18 +00:00
* New IFF chunk formats supported: CST, FBMP, CATS * Rebranded libfar to simply far * Started preliminary work on the hitutils package
18 lines
No EOL
308 B
CMake
18 lines
No EOL
308 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}) |