File tree Expand file tree Collapse file tree 4 files changed +32
-2
lines changed Expand file tree Collapse file tree 4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ target_link_libraries(${CMAKE_PROJECT_NAME}
4949
5050target_include_directories (${CMAKE_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} )
5151
52+ add_subdirectory (Utilities)
53+
5254add_subdirectory (ADSB)
5355add_subdirectory (AnalyzeView)
5456add_subdirectory (Android)
@@ -73,7 +75,7 @@ add_subdirectory(QmlControls)
7375add_subdirectory (Settings)
7476add_subdirectory (Terrain)
7577add_subdirectory (UI)
76- add_subdirectory (Utilities)
78+
7779add_subdirectory (UTMSP)
7880add_subdirectory (Vehicle)
7981add_subdirectory (VideoManager)
Original file line number Diff line number Diff line change @@ -25,3 +25,30 @@ CPMAddPackage(
2525)
2626
2727target_link_libraries (${CMAKE_PROJECT_NAME} PRIVATE shp)
28+
29+ #===========================================================================#
30+
31+ # CPMAddPackage(
32+ # NAME PROJ
33+ # VERSION 9.6.0
34+ # GITHUB_REPOSITORY OSGeo/PROJ
35+ # GIT_TAG 9.6.0
36+ # OPTIONS
37+ # "BUILD_EXAMPLES OFF"
38+ # "BUILD_SHARED_LIBS OFF"
39+ # "BUILD_TESTING OFF"
40+ # )
41+
42+ CPMAddPackage(
43+ NAME GDAL
44+ GITHUB_REPOSITORY OSGeo/gdal
45+ VERSION 3.11.0
46+ OPTIONS
47+ "BUILD_APPS OFF"
48+ "BUILD_SHARED_LIBS OFF"
49+ "BUILD_TESTING OFF"
50+ "GDAL_BUILD_OPTIONAL_DRIVERS OFF"
51+ "OGR_BUILD_OPTIONAL_DRIVERS OFF"
52+ )
53+
54+ # target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE GDAL::gdal)
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y --quiet install \
185185 mesa-va-drivers \
186186 mesa-vdpau-drivers \
187187 mesa-vulkan-drivers \
188+ proj-bin \
188189 va-driver-all \
189190 vainfo \
190191 wayland-protocols
Original file line number Diff line number Diff line change 88fi
99
1010brew update
11- brew install cmake ninja ccache git pkgconf create-dmg
11+ brew install cmake ninja ccache git pkgconf create-dmg proj
1212
1313# Install GStreamer
1414GST_URL=https://gstreamer.freedesktop.org/data/pkg/osx
You can’t perform that action at this time.
0 commit comments