Warning, /libraries/kosmindoormap/src/tools/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 
0004 add_executable(osm-download-data osm-download-data.cpp)
0005 target_link_libraries(osm-download-data KOSMIndoorMap KOSM_xmlioplugin)
0006 if (TARGET KOSM_pbfioplugin)
0007     target_compile_definitions(osm-download-data PRIVATE -DHAVE_OSM_PBF_SUPPORT=1)
0008     target_link_libraries(osm-download-data KOSM_pbfioplugin)
0009 else()
0010     target_compile_definitions(osm-download-data PRIVATE -DHAVE_OSM_PBF_SUPPORT=0)
0011 endif()
0012 
0013 add_executable(marble-geometry-assembler marble-geometry-assembler.cpp)
0014 target_link_libraries(marble-geometry-assembler KOSMIndoorMap KOSM_xmlioplugin)
0015 if (TARGET KOSM_pbfioplugin)
0016     target_compile_definitions(marble-geometry-assembler PRIVATE -DHAVE_OSM_PBF_SUPPORT=1)
0017     target_link_libraries(marble-geometry-assembler KOSM_pbfioplugin)
0018 else()
0019     target_compile_definitions(marble-geometry-assembler PRIVATE -DHAVE_OSM_PBF_SUPPORT=0)
0020 endif()