Skip to content

Commit 0a36a1b

Browse files
authored
Merge pull request qgis#59169 from qgis/fix_untwine_include_dir
Fix missing include dir for untwine
2 parents 8f1a6e3 + 0215bd0 commit 0a36a1b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

external/untwine/api/QgisUntwine_win.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bool QgisUntwine::start(Options& options)
2828
cmdline += "--" + op.first + " \"" + op.second + "\" ";
2929

3030
PROCESS_INFORMATION processInfo;
31-
STARTUPINFO startupInfo;
31+
STARTUPINFOA startupInfo;
3232

3333
ZeroMemory(&processInfo, sizeof(PROCESS_INFORMATION));
3434
ZeroMemory(&startupInfo, sizeof(STARTUPINFO));

src/providers/pdal/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ set(UNTWINE_INCLUDE_DIRS
101101
${CMAKE_SOURCE_DIR}/external/untwine/untwine
102102
${CMAKE_SOURCE_DIR}/external/untwine/epf
103103
${CMAKE_SOURCE_DIR}/external/untwine/bu
104+
${CMAKE_SOURCE_DIR}/external/untwine
104105
${CMAKE_SOURCE_DIR}/untwine/api
105106
${CMAKE_BINARY_DIR}/untwine
106107
)

0 commit comments

Comments
 (0)