axmol/samples/Cpp/HelloCpp/CMakeLists.txt

15 lines
250 B
CMake
Raw Normal View History

2013-11-02 14:41:04 +08:00
set(SAMPLE_NAME hellocpp)
set(SAMPLE_SRC
proj.linux/main.cpp
Classes/AppDelegate.cpp
Classes/HelloWorldScene.cpp
)
# add the executable
add_executable(${SAMPLE_NAME}
${SAMPLE_SRC}
)
target_link_libraries(${SAMPLE_NAME} ${COCOS_LIBRARIES})