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}
49
49
50
50
target_include_directories (${CMAKE_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} )
51
51
52
+ add_subdirectory (Utilities )
53
+
52
54
add_subdirectory (ADSB )
53
55
add_subdirectory (AnalyzeView )
54
56
add_subdirectory (Android )
@@ -73,7 +75,7 @@ add_subdirectory(QmlControls)
73
75
add_subdirectory (Settings )
74
76
add_subdirectory (Terrain )
75
77
add_subdirectory (UI )
76
- add_subdirectory ( Utilities )
78
+
77
79
add_subdirectory (UTMSP )
78
80
add_subdirectory (Vehicle )
79
81
add_subdirectory (VideoManager )
Original file line number Diff line number Diff line change @@ -25,3 +25,30 @@ CPMAddPackage(
25
25
)
26
26
27
27
target_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 \
185
185
mesa-va-drivers \
186
186
mesa-vdpau-drivers \
187
187
mesa-vulkan-drivers \
188
+ proj-bin \
188
189
va-driver-all \
189
190
vainfo \
190
191
wayland-protocols
Original file line number Diff line number Diff line change 8
8
fi
9
9
10
10
brew update
11
- brew install cmake ninja ccache git pkgconf create-dmg
11
+ brew install cmake ninja ccache git pkgconf create-dmg proj
12
12
13
13
# Install GStreamer
14
14
GST_URL=https://gstreamer.freedesktop.org/data/pkg/osx
You can’t perform that action at this time.
0 commit comments