mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
9 lines
305 B
CMake
9 lines
305 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(message_box WIN32 ${SRC})
|
|
|
|
#TARGET_LINK_LIBRARIES(message_box ${PLATFORM_LINKFLAGS})
|
|
NL_DEFAULT_PROPS(message_box "NeL, Tools, Misc: message_box")
|
|
NL_ADD_RUNTIME_FLAGS(message_box)
|
|
|
|
INSTALL(TARGETS message_box RUNTIME DESTINATION bin COMPONENT toolsmisc)
|