Warning, /education/marble/examples/cpp/squad-interpolation/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 SET (TARGET squad-interpolation) 0002 PROJECT (${TARGET}) 0003 0004 include_directories( 0005 ${CMAKE_CURRENT_SOURCE_DIR} 0006 ${CMAKE_CURRENT_BINARY_DIR} 0007 ) 0008 0009 set( ${TARGET}_HDR squad-interpolation.h) 0010 set( ${TARGET}_SRC squad-interpolation.cpp) 0011 add_executable( ${TARGET} ${${TARGET}_SRC} ) 0012 0013 target_link_libraries(${TARGET} marblewidget) 0014 0015 install( TARGETS ${TARGET} RUNTIME DESTINATION ${MARBLE_EXAMPLES_INSTALL_DIR}/${TARGET} ) 0016 0017 return() 0018 # TODO: do not install sources for now, MarblePlacemarkModel.h is not ready/good for public usages 0019 install( FILES ${${TARGET}_SRC} ${${TARGET}_HDR} DESTINATION ${MARBLE_EXAMPLES_INSTALL_DIR}/${TARGET} ) 0020 install( FILES CMakeLists.txt.external DESTINATION ${MARBLE_EXAMPLES_INSTALL_DIR}/${TARGET} RENAME CMakeLists.txt )