mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 15:29:02 +00:00
9 lines
269 B
CMake
9 lines
269 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(xml_packer ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(xml_packer nelmisc)
|
|
NL_DEFAULT_PROPS(xml_packer "NeL, Tools, Misc: xml_packer")
|
|
NL_ADD_RUNTIME_FLAGS(xml_packer)
|
|
|
|
INSTALL(TARGETS xml_packer RUNTIME DESTINATION bin COMPONENT toolsmisc)
|