1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
build_example(
NAME balloonwalker
DEPENDS kmlengine)
build_example(
NAME clone
DEPENDS kmlengine)
build_example(
NAME csv2kml
DEPENDS kmlconvenience)
build_example(
NAME csvinfo
DEPENDS kmlconvenience)
build_example(
NAME import
DEPENDS kmlengine)
build_example(
NAME inlinestyles
DEPENDS kmlengine)
build_example(
NAME kmlfile
DEPENDS kmlengine)
build_example(
NAME kml2kmz
DEPENDS kmlengine)
build_example(
NAME kmzchecklinks
DEPENDS kmlengine)
build_example(
NAME oldschema
DEPENDS kmlengine)
build_example(
NAME parsebig
DEPENDS kmlengine)
build_example(
NAME printstyle
DEPENDS kmlengine)
build_example(
NAME change
DEPENDS kmlconvenience)
build_example(
NAME splitstyles
DEPENDS kmlconvenience)
build_example(
NAME streamkml
DEPENDS kmlconvenience)
if(INSTALL_EXAMPLES)
file(GLOB eg_files "${CMAKE_CURRENT_SOURCE_DIR}/*.cc")
install(FILES ${eg_files} DESTINATION examples/engine)
endif(INSTALL_EXAMPLES)
|