File tree Expand file tree Collapse file tree 5 files changed +37
-4
lines changed Expand file tree Collapse file tree 5 files changed +37
-4
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,11 +25,10 @@ CPMAddPackage(
25
25
GIT_TAG develop
26
26
OPTIONS
27
27
"ZLIB_BUILD_TESTING OFF"
28
- "ZLIB_BUILD_SHARED OFF "
28
+ "ZLIB_BUILD_SHARED ON "
29
29
"ZLIB_BUILD_STATIC ON"
30
30
"ZLIB_BUILD_MINIZIP OFF"
31
31
"ZLIB_INSTALL OFF"
32
- "ZLIB_PREFIX OFF"
33
32
"${ZLIB_EXTRA_OPTIONS} "
34
33
)
35
34
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 @@ -123,6 +123,11 @@ DEBIAN_FRONTEND=noninteractive apt-get -y --quiet install \
123
123
DEBIAN_FRONTEND=noninteractive apt-get -y --quiet install \
124
124
libshp-dev
125
125
126
+ # GDAL
127
+ DEBIAN_FRONTEND=noninteractive apt-get -y --quiet install \
128
+ libproj-dev \
129
+ proj-bin
130
+
126
131
# DNS
127
132
# DEBIAN_FRONTEND=noninteractive apt-get -y --quiet install libavahi-compat-libdnssd-dev
128
133
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