mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 17:22:12 +00:00
18 lines
759 B
Text
18 lines
759 B
Text
|
# Rules for building the demo. Doesn't use an installed gme if you've already
|
||
|
# installed the project so if you're copying these rules you probably don't
|
||
|
# even need these next two lines if you're building against system-installed
|
||
|
# gme.
|
||
|
include_directories(${CMAKE_SOURCE_DIR}/gme ${CMAKE_SOURCE_DIR})
|
||
|
link_directories(${CMAKE_BINARY_DIR}/gme)
|
||
|
|
||
|
add_executable(demo Wave_Writer.cpp basics.c)
|
||
|
|
||
|
# Add command to copy build file over.
|
||
|
add_custom_command(TARGET demo
|
||
|
POST_BUILD
|
||
|
COMMAND cmake -E copy "${CMAKE_SOURCE_DIR}/test.nsf" ${CMAKE_CURRENT_BINARY_DIR}
|
||
|
COMMENT "Add convenience copy of test.nsf file for demo application"
|
||
|
VERBATIM) # VERBATIM is essentially required, "please use correct command line kthx"
|
||
|
|
||
|
target_link_libraries(demo gme)
|