Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer
4 changes: 2 additions & 2 deletions test/geos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
class GEOSHandle
{
public:
GEOSHandle() : handle(initGEOS_r(nullptr, nullptr)) { }
GEOSHandle() : handle(GEOS_init_r()) { }
~GEOSHandle()
{
if (handle)
finishGEOS_r(handle);
GEOS_finish_r(handle);
}
GEOSContextHandle_t get() const { return handle; }

Expand Down
2 changes: 1 addition & 1 deletion test/spatialite-tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(tools
exif_loader
)
foreach(tool ${tools})
set(tool_EXE $<TARGET_FILE:xpro::${tool}>)
set(tool_EXE $<TARGET_FILE:spatialite-tools::${tool}>)
set(tool_CMAKE ${CMAKE_CURRENT_BINARY_DIR}/${tool}.cmake)
configure_file(tool.in.cmake ${tool_CMAKE} @ONLY)
file(GENERATE OUTPUT ${tool_CMAKE} INPUT ${tool_CMAKE})
Expand Down
Loading