From 60f6bf62d024b55ef0e03bad28393a4510c631a8 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 3 Nov 2023 17:11:13 +0100 Subject: . --- wall-tileset-tool/CMakeLists.txt | 16 ++++++++++++++++ wall-tileset-tool/main.cpp | 6 ++++++ 2 files changed, 22 insertions(+) create mode 100644 wall-tileset-tool/CMakeLists.txt create mode 100644 wall-tileset-tool/main.cpp (limited to 'wall-tileset-tool') diff --git a/wall-tileset-tool/CMakeLists.txt b/wall-tileset-tool/CMakeLists.txt new file mode 100644 index 00000000..525696fd --- /dev/null +++ b/wall-tileset-tool/CMakeLists.txt @@ -0,0 +1,16 @@ +find_package(OpenCV QUIET) +if(OpenCV_FOUND) + set(self "floormat-wall-tileset-tool") + + include_directories(SYSTEM "${OpenCV_INCLUDE_DIRS}") + link_libraries(Corrade::Utility Magnum::Magnum) + link_libraries(opencv_imgproc opencv_imgcodecs opencv_core) + link_libraries(nlohmann_json::nlohmann_json) + + file(GLOB sources "*.cpp" CONFIGURE_ARGS) + + add_executable(${self} "${sources}") + target_link_libraries(${self} PRIVATE floormat-serialize floormat) + + fm_add_install_executable(${self}) +endif() diff --git a/wall-tileset-tool/main.cpp b/wall-tileset-tool/main.cpp new file mode 100644 index 00000000..eac6a6a7 --- /dev/null +++ b/wall-tileset-tool/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** argv) +{ + return 0; +} -- cgit v1.2.3