mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
12 lines
362 B
CMake
12 lines
362 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(pd_parser ${SRC})
|
|
|
|
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
|
TARGET_LINK_LIBRARIES(pd_parser ${LIBXML2_LIBRARIES} nelmisc)
|
|
ADD_DEFINITIONS(${LIBXML2_DEFINITIONS})
|
|
|
|
NL_DEFAULT_PROPS(pd_parser "Ryzom, Tools: PD Parser")
|
|
NL_ADD_RUNTIME_FLAGS(pd_parser)
|
|
|
|
INSTALL(TARGETS pd_parser RUNTIME DESTINATION bin COMPONENT tools)
|