97 lines
3.0 KiB
CMake
97 lines
3.0 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(checks-parser VERSION 0.1 LANGUAGES CXX)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets)
|
|
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets)
|
|
|
|
set(PROJECT_SOURCES
|
|
main.cpp
|
|
mainwindow.cpp
|
|
mainwindow.h
|
|
mainwindow.ui
|
|
)
|
|
|
|
|
|
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
|
|
qt_add_executable(checks-parser
|
|
MANUAL_FINALIZATION
|
|
${PROJECT_SOURCES}
|
|
)
|
|
# Define target properties for Android with Qt 6 as:
|
|
# set_property(TARGET checks-parser APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
|
|
# ${CMAKE_CURRENT_SOURCE_DIR}/android)
|
|
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
|
|
else()
|
|
if(ANDROID)
|
|
add_library(checks-parser SHARED
|
|
${PROJECT_SOURCES}
|
|
)
|
|
# Define properties for Android with Qt 5 after find_package() calls as:
|
|
# set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
|
|
else()
|
|
add_executable(checks-parser
|
|
${PROJECT_SOURCES}
|
|
goods/goods.h goods/goods.cpp
|
|
check/check.h check/check.cpp
|
|
parser/parser.h parser/parser.cpp
|
|
parser/module.h parser/module.cpp
|
|
settings.h
|
|
outputdialog.h outputdialog.cpp outputdialog.ui
|
|
output/output_options.h output/output_options.cpp
|
|
ofd/ofd.h ofd/ofd.cpp
|
|
ofd/module.h ofd/module.cpp
|
|
utils/utils.h utils/utils.cpp
|
|
image/checkimage.h image/checkimage.cpp
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
target_link_libraries(checks-parser PRIVATE Qt${QT_VERSION_MAJOR}::Widgets)
|
|
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
|
|
# If you are developing for iOS or macOS you should consider setting an
|
|
# explicit, fixed bundle identifier manually though.
|
|
if(${QT_VERSION} VERSION_LESS 6.1.0)
|
|
set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER com.example.checks-parser)
|
|
endif()
|
|
set_target_properties(checks-parser PROPERTIES
|
|
${BUNDLE_ID_OPTION}
|
|
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
|
MACOSX_BUNDLE TRUE
|
|
WIN32_EXECUTABLE TRUE
|
|
)
|
|
|
|
include(GNUInstallDirs)
|
|
install(TARGETS checks-parser
|
|
BUNDLE DESTINATION .
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|
|
|
|
if(QT_VERSION_MAJOR EQUAL 6)
|
|
qt_finalize_executable(checks-parser)
|
|
endif()
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git
|
|
GIT_TAG 3b15fa82ea74739b574d705fea44959b58142eb8)
|
|
FetchContent_MakeAvailable(cpr)
|
|
target_link_libraries(checks-parser PRIVATE cpr::cpr)
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_search_module(opencv REQUIRED IMPORTED_TARGET opencv)
|
|
target_link_libraries(checks-parser PRIVATE PkgConfig::opencv)
|
|
target_link_libraries(checks-parser PRIVATE -ltesseract)
|
|
|
|
|