Skip to content

Commit

Permalink
Merge pull request #3 from alicevision/floatImageViewer
Browse files Browse the repository at this point in the history
Float image viewer
  • Loading branch information
fabiencastan authored Mar 3, 2020
2 parents 9abaef6 + 5436906 commit 063fd29
Show file tree
Hide file tree
Showing 7 changed files with 780 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ project(QtAliceVisionPlugin LANGUAGES CXX VERSION 0.1.0)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)

# C++14
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(Qt5Core REQUIRED)
find_package(Qt5Quick REQUIRED)
find_package(Qt5Qml REQUIRED)
Expand Down
5 changes: 3 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Target srcs
set(PLUGIN_SOURCES FeaturesViewer.cpp)
set(PLUGIN_HEADERS FeaturesViewer.hpp plugin.hpp)
set(PLUGIN_SOURCES FeaturesViewer.cpp FloatImageViewer.cpp FloatTexture.cpp)
set(PLUGIN_HEADERS FeaturesViewer.hpp FloatImageViewer.hpp FloatTexture.hpp plugin.hpp)

# Target properties
add_library(qtAliceVisionPlugin SHARED ${PLUGIN_SOURCES} ${PLUGIN_HEADERS})
Expand All @@ -11,6 +11,7 @@ target_link_libraries(qtAliceVisionPlugin
aliceVision_sfmDataIO
aliceVision_sfm
aliceVision_system
aliceVision_image
Qt5::Core
Qt5::Qml
Qt5::Quick
Expand Down
Loading

0 comments on commit 063fd29

Please sign in to comment.