mirror of
https://github.com/open-goal/jak-project
synced 2026-06-12 13:35:39 -04:00
2436a8a541
* Use env shebangs * CMake cleanup, install() invocations, & CTest `ctest` & the `test` target work now * Nixpkgs support
10 lines
231 B
CMake
10 lines
231 B
CMake
add_executable(dgo_unpacker
|
|
dgo_unpacker.cpp)
|
|
target_link_libraries(dgo_unpacker common)
|
|
|
|
add_executable(dgo_packer
|
|
dgo_packer.cpp)
|
|
target_link_libraries(dgo_packer common)
|
|
|
|
install(TARGETS dgo_unpacker dgo_packer)
|