Skip to content

Commit

Permalink
Merge pull request #59169 from qgis/fix_untwine_include_dir
Browse files Browse the repository at this point in the history
Fix missing include dir for untwine
  • Loading branch information
m-kuhn authored Oct 23, 2024
2 parents 8f1a6e3 + 0215bd0 commit 0a36a1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion external/untwine/api/QgisUntwine_win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bool QgisUntwine::start(Options& options)
cmdline += "--" + op.first + " \"" + op.second + "\" ";

PROCESS_INFORMATION processInfo;
STARTUPINFO startupInfo;
STARTUPINFOA startupInfo;

ZeroMemory(&processInfo, sizeof(PROCESS_INFORMATION));
ZeroMemory(&startupInfo, sizeof(STARTUPINFO));
Expand Down
1 change: 1 addition & 0 deletions src/providers/pdal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ set(UNTWINE_INCLUDE_DIRS
${CMAKE_SOURCE_DIR}/external/untwine/untwine
${CMAKE_SOURCE_DIR}/external/untwine/epf
${CMAKE_SOURCE_DIR}/external/untwine/bu
${CMAKE_SOURCE_DIR}/external/untwine
${CMAKE_SOURCE_DIR}/untwine/api
${CMAKE_BINARY_DIR}/untwine
)
Expand Down

0 comments on commit 0a36a1b

Please sign in to comment.