mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-15 18:46:42 -04:00
* License header formatting change
* New IFF chunk formats supported: CST, FBMP, CATS * Rebranded libfar to simply far * Started preliminary work on the hitutils package
This commit is contained in:
parent
55659f43b5
commit
bc51bb4aad
96 changed files with 2321 additions and 424 deletions
18
Tools/hitutils/CMakeLists.txt
Normal file
18
Tools/hitutils/CMakeLists.txt
Normal file
|
@ -0,0 +1,18 @@
|
|||
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})
|
Loading…
Add table
Add a link
Reference in a new issue