File: CMakeLists.txt

package info (click to toggle)
libkml 1.3.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,660 kB
  • sloc: cpp: 48,088; python: 2,008; xml: 1,806; ansic: 1,766; php: 223; java: 195; ruby: 109; perl: 108; sh: 42; makefile: 17
file content (64 lines) | stat: -rw-r--r-- 990 bytes parent folder | download | duplicates (6)
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)