diff options
author | click <click@gonnamakeyou.com> | 2013-02-17 20:28:55 +0100 |
---|---|---|
committer | click <click@gonnamakeyou.com> | 2013-02-17 20:28:55 +0100 |
commit | 6395c80e86ac3a5fef1d666c16f453f8e81beed3 (patch) | |
tree | 21e3461b51c351c63b9540c4fdd933359a782bd1 /src | |
parent | f2b48ba0081d245aff1bd69fe696b30af678ae11 (diff) |
Buildsystem: Disable building the nonfunctional meshextractor.tool (not in a production-state atm), it CAN however be built with with using the -DWITH_MESHEXTRACTOR flag (not documented as option, and will most probably change in the future)
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index 49c17913c64..3adccf105de 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -12,4 +12,6 @@ add_subdirectory(map_extractor) add_subdirectory(vmap4_assembler) add_subdirectory(vmap4_extractor) add_subdirectory(mmaps_generator) -add_subdirectory(mesh_extractor) +if (WITH_MESHEXTRACTOR) + add_subdirectory(mesh_extractor) +endif() |