This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from melowntech/vasek/setup-resource-tweaks
mapproxy-setup-resource tweaks
- Loading branch information
Showing
30 changed files
with
88 additions
and
58 deletions.
There are no files selected for viewing
Submodule cmake
updated
18 files
+7 −0 | Modules.Conan/FindOpenBLAS.cmake | |
+3 −0 | Modules.Conan/Findyaml-cpp.cmake | |
+20 −15 | buildsys.cmake | |
+9 −0 | include/debian.mk | |
+0 −20 | macros/architecture.cmake | |
+2 −0 | macros/build-types/release.cmake | |
+0 −24 | macros/compile-definitions.cmake | |
+7 −86 | macros/cuda.cmake | |
+10 −20 | macros/exclude-from-all.cmake | |
+19 −17 | macros/install-conan-deps.cmake | |
+2 −0 | macros/opencl.cmake | |
+2 −0 | macros/opengl.cmake | |
+2 −0 | macros/openmp.cmake | |
+3 −1 | macros/python.cmake | |
+10 −12 | macros/torch.cmake | |
+2 −1 | tools/compile-pyc/compile-pyc | |
+3 −2 | tools/file2cpp/file2cpp | |
+2 −1 | tools/py-runnable/py-runnable |
Submodule gdal-drivers
updated
5 files
Submodule libgeo
updated
13 files
+5 −5 | geo/CMakeLists.txt | |
+111 −8 | geo/geodataset.cpp | |
+26 −0 | geo/geodataset.hpp | |
+2 −2 | geo/python/CMakeLists.txt | |
+2 −0 | geo/python/gdsblockwriter.cpp | |
+2 −1 | geo/python/geomodule.cpp | |
+1 −0 | geo/python/geomodule.hpp | |
+1 −1 | geo/test-factors/CMakeLists.txt | |
+1 −1 | geo/test-geoid/CMakeLists.txt | |
+2 −2 | geo/test-hconv/CMakeLists.txt | |
+1 −1 | geo/test-heightmodel/CMakeLists.txt | |
+3 −3 | geo/test-srs/CMakeLists.txt | |
+3 −3 | geo/tools/CMakeLists.txt |
Submodule libgeometry
updated
8 files
Submodule libhttp
updated
3 files
+5 −3 | http/CMakeLists.txt | |
+1 −1 | http/test/clienttest/CMakeLists.txt | |
+1 −1 | http/test/selftest/CMakeLists.txt |
Submodule libimgproc
updated
6 files
Submodule libmath
updated
4 files
+3 −3 | math/CMakeLists.txt | |
+1 −1 | math/python/CMakeLists.txt | |
+2 −2 | math/python/mathmodule.cpp | |
+1 −0 | math/python/mathmodule.hpp |
Submodule libpysupport
updated
18 files
+1 −1 | pysupport/CMakeLists.txt | |
+2 −1 | pysupport/argv.cpp | |
+1 −0 | pysupport/argv.hpp | |
+41 −0 | pysupport/boost-python-definitions.hpp | |
+2 −1 | pysupport/debugger.cpp | |
+1 −0 | pysupport/debugger.hpp | |
+2 −0 | pysupport/import.cpp | |
+2 −1 | pysupport/iostreams.cpp | |
+1 −0 | pysupport/iostreams.hpp | |
+2 −1 | pysupport/json.cpp | |
+1 −0 | pysupport/json.hpp | |
+2 −0 | pysupport/load.cpp | |
+5 −2 | pysupport/package.cpp | |
+1 −0 | pysupport/package.hpp | |
+2 −1 | pysupport/profiler.cpp | |
+1 −0 | pysupport/profiler.hpp | |
+1 −1 | pysupport/test/CMakeLists.txt | |
+2 −0 | pysupport/threads.hpp |
Submodule libsemantic
updated
24 files
+7 −4 | semantic/CMakeLists.txt | |
+2 −2 | semantic/gpkg.cpp | |
+113 −15 | semantic/io.cpp | |
+1 −0 | semantic/io.hpp | |
+2 −0 | semantic/mesh.hpp | |
+1 −0 | semantic/mesh/mesh.cpp | |
+10 −0 | semantic/mesh/mesh.incl.hpp | |
+166 −0 | semantic/mesh/pole.cpp | |
+39 −0 | semantic/mesh/pole.hpp | |
+257 −18 | semantic/mesh/tree.cpp | |
+9 −0 | semantic/ogr/ogr.incl.hpp | |
+54 −0 | semantic/ogr/pole.cpp | |
+38 −0 | semantic/ogr/pole.hpp | |
+52 −10 | semantic/ogr/tree.cpp | |
+1 −1 | semantic/python/CMakeLists.txt | |
+143 −25 | semantic/python/semanticmodule.cpp | |
+5 −5 | semantic/tools/CMakeLists.txt | |
+4 −0 | semantic/tools/data/semantic.mtl | |
+10 −2 | semantic/tools/semantic2obj.cpp | |
+3 −1 | semantic/tools/semantic2vef.cpp | |
+41 −0 | semantic/tree.cpp | |
+80 −0 | semantic/tree.hpp | |
+1 −0 | semantic/world.cpp | |
+31 −14 | semantic/world.hpp |
Submodule libservice
updated
12 files
+14 −8 | service/CMakeLists.txt | |
+10 −52 | service/ctrlclient.cpp | |
+21 −10 | service/ctrlclient.hpp | |
+66 −0 | service/ctrlhandshake.cpp | |
+41 −0 | service/ctrlhandshake.hpp | |
+55 −0 | service/detail/ctrlclient.cpp | |
+113 −0 | service/detail/ctrlclient.hpp | |
+104 −0 | service/netctrlclient.cpp | |
+86 −0 | service/netctrlclient.hpp | |
+14 −0 | service/service.cpp | |
+11 −1 | service/tools/CMakeLists.txt | |
+176 −0 | service/tools/netctrlclient.cpp |
Submodule libutility
updated
17 files
+4 −3 | utility/CMakeLists.txt | |
+14 −3 | utility/detail/iface.unsupported.cpp | |
+37 −0 | utility/mysqldb.hpp | |
+6 −0 | utility/openmp.hpp | |
+14 −2 | utility/python/CMakeLists.txt | |
+33 −2 | utility/python/utilitymodule.cpp | |
+1 −0 | utility/python/utilitymodule.hpp | |
+59 −12 | utility/tcpendpoint-io.cpp | |
+3 −1 | utility/tcpendpoint-io.hpp | |
+40 −1 | utility/tcpendpoint.hpp | |
+1 −1 | utility/test-uri/CMakeLists.txt | |
+1 −1 | utility/test-utility/CMakeLists.txt | |
+1 −0 | utility/tools/CMakeLists.txt | |
+13 −0 | utility/tools/test-tcpendpoint/CMakeLists.txt | |
+120 −0 | utility/tools/test-tcpendpoint/tcpendpoint.cpp | |
+1 −1 | utility/tools/test-zip/zip.cpp | |
+10 −3 | utility/uri.hpp |
Submodule vts-libs
updated
5 files
+5 −4 | vts-libs/CMakeLists.txt | |
+4 −4 | vts-libs/tools/CMakeLists.txt | |
+7 −1 | vts-libs/vts/meshio.cpp | |
+10 −4 | vts-libs/vts/tileop.cpp | |
+2 −1 | vts-libs/vts/tileop.hpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.