From af331891f6058320825d86bef81b9774e12b26c9 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Sun, 16 Feb 2014 10:10:46 -0500 Subject: [PATCH] add/update toolset --- CMakeLists.txt | 52 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f31571..9df9e2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,16 +82,24 @@ target_link_libraries( ${OPENAL_LIBRARY} ) -add_executable(cfilearchiver +add_executable(ac EXCLUDE_FROM_ALL - src/cfilearchiver/cfilearchiver.cpp + src/ac/ac.cpp + src/ac/ac_stubs.cpp + src/ac/convert.cpp ) -add_executable(scramble +target_link_libraries( + ac + code + ${SDL2_LIBRARIES} + ${OPENGL_LIBRARIES} + ${OPENAL_LIBRARY} +) + +add_executable(cfilearchiver EXCLUDE_FROM_ALL - src/platform/unix.cpp - src/parse/encrypt.cpp - src/scramble/scramble.cpp + src/cfilearchiver/cfilearchiver.cpp ) add_executable(cryptstring @@ -99,6 +107,38 @@ add_executable(cryptstring src/cryptstring/cryptstring.cpp ) +add_executable(nebedit + EXCLUDE_FROM_ALL + src/nebedit/nebedit.cpp + src/nebedit/nebstubs.cpp +) + +target_link_libraries( + nebedit + code + ${SDL2_LIBRARIES} + ${OPENGL_LIBRARIES} + ${OPENAL_LIBRARY} +) + +add_executable(pofview + EXCLUDE_FROM_ALL + src/pofview/childfrm.cpp + src/pofview/mainfrm.cpp + src/pofview/objecttree.cpp + src/pofview/pofview.cpp + src/pofview/pofviewdoc.cpp + src/pofview/pofviewstubs.cpp + src/pofview/pofviewview.cpp + src/pofview/stdafx.cpp +) + +add_executable(scramble + EXCLUDE_FROM_ALL + src/parse/encrypt.cpp + src/scramble/scramble.cpp +) + add_executable(fonttool EXCLUDE_FROM_ALL src/fonttool/fontstubs.cpp -- 2.39.2