Fixed: #1412 Added build_sound, build_samplebank and build_soundbank to CMake.
This commit is contained in:
parent
c0c75e442d
commit
e87ed24608
3 changed files with 39 additions and 0 deletions
13
code/nel/tools/sound/build_samplebank/CMakeLists.txt
Normal file
13
code/nel/tools/sound/build_samplebank/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
FILE(GLOB SRC *.cpp *.h)
|
||||
|
||||
ADD_EXECUTABLE(build_samplebank ${SRC})
|
||||
|
||||
ADD_DEFINITIONS( ${LIBXML2_DEFINITIONS})
|
||||
|
||||
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
||||
|
||||
TARGET_LINK_LIBRARIES(build_samplebank nelmisc nelsound)
|
||||
NL_DEFAULT_PROPS(build_samplebank "NeL, Tools, Sound: build_samplebank")
|
||||
NL_ADD_RUNTIME_FLAGS(build_samplebank)
|
||||
|
||||
INSTALL(TARGETS build_samplebank RUNTIME DESTINATION bin COMPONENT toolssound)
|
13
code/nel/tools/sound/build_sound/CMakeLists.txt
Normal file
13
code/nel/tools/sound/build_sound/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
FILE(GLOB SRC *.cpp *.h)
|
||||
|
||||
ADD_EXECUTABLE(build_sound ${SRC})
|
||||
|
||||
ADD_DEFINITIONS( ${LIBXML2_DEFINITIONS})
|
||||
|
||||
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
||||
|
||||
TARGET_LINK_LIBRARIES(build_sound nelmisc nelsound)
|
||||
NL_DEFAULT_PROPS(build_sound "NeL, Tools, Sound: build_sound")
|
||||
NL_ADD_RUNTIME_FLAGS(build_sound)
|
||||
|
||||
INSTALL(TARGETS build_sound RUNTIME DESTINATION bin COMPONENT toolssound)
|
13
code/nel/tools/sound/build_soundbank/CMakeLists.txt
Normal file
13
code/nel/tools/sound/build_soundbank/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
FILE(GLOB SRC *.cpp *.h)
|
||||
|
||||
ADD_EXECUTABLE(build_soundbank ${SRC})
|
||||
|
||||
ADD_DEFINITIONS( ${LIBXML2_DEFINITIONS})
|
||||
|
||||
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
||||
|
||||
TARGET_LINK_LIBRARIES(build_soundbank nelmisc nelsound)
|
||||
NL_DEFAULT_PROPS(build_soundbank "NeL, Tools, Sound: build_soundbank")
|
||||
NL_ADD_RUNTIME_FLAGS(build_soundbank)
|
||||
|
||||
INSTALL(TARGETS build_soundbank RUNTIME DESTINATION bin COMPONENT toolssound)
|
Loading…
Reference in a new issue