2021-09-04 17:13:03 +02:00
|
|
|
#[[**************************************************************************
|
|
|
|
* libragephoto RAGE Photo Parser
|
2022-12-28 07:39:06 +01:00
|
|
|
* Copyright (C) 2021-2022 Syping
|
2021-09-04 17:13:03 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* This software is provided as-is, no warranties are given to you, we are not
|
|
|
|
* responsible for anything with use of the software, you are self responsible.
|
|
|
|
****************************************************************************]]
|
|
|
|
|
2021-08-27 20:07:14 +02:00
|
|
|
cmake_minimum_required(VERSION 3.7)
|
|
|
|
project(ragephoto-qtviewer LANGUAGES CXX)
|
2021-09-04 17:13:03 +02:00
|
|
|
include(GNUInstallDirs)
|
2021-08-27 20:07:14 +02:00
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
|
|
|
set(FORCE_QT_VERSION "" CACHE STRING "Force Qt Version")
|
|
|
|
if(FORCE_QT_VERSION)
|
|
|
|
set(QT_VERSION_MAJOR ${FORCE_QT_VERSION})
|
|
|
|
else()
|
|
|
|
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
|
|
|
|
endif()
|
|
|
|
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED)
|
|
|
|
|
|
|
|
set(QTVIEWER_SOURCES
|
|
|
|
src/main.cpp
|
|
|
|
)
|
|
|
|
|
2021-08-27 21:48:33 +02:00
|
|
|
if (TARGET ragephoto)
|
|
|
|
set(RAGEPHOTO_LIBRARIES ragephoto)
|
2021-11-12 06:55:37 +01:00
|
|
|
set(RAGEPHOTO_LIBRARY_DIRS ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
|
2021-08-27 20:07:14 +02:00
|
|
|
else()
|
2021-08-27 21:48:33 +02:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(RAGEPHOTO REQUIRED ragephoto)
|
2021-08-27 20:07:14 +02:00
|
|
|
endif()
|
2021-08-27 21:48:33 +02:00
|
|
|
|
2021-10-24 05:03:14 +02:00
|
|
|
add_executable(ragephoto-qtviewer WIN32 ${QTVIEWER_SOURCES})
|
2021-11-12 06:55:37 +01:00
|
|
|
set_target_properties(ragephoto-qtviewer PROPERTIES
|
2021-11-12 22:21:38 +01:00
|
|
|
INSTALL_RPATH "${RAGEPHOTO_LIBRARY_DIRS}"
|
2021-11-12 06:55:37 +01:00
|
|
|
)
|
2021-08-27 21:48:33 +02:00
|
|
|
target_compile_options(ragephoto-qtviewer PRIVATE ${RAGEPHOTO_CFLAGS})
|
|
|
|
target_link_libraries(ragephoto-qtviewer PRIVATE Qt${QT_VERSION_MAJOR}::Widgets ${RAGEPHOTO_LIBRARIES})
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.13.0")
|
|
|
|
target_link_directories(ragephoto-qtviewer PRIVATE ${RAGEPHOTO_LIBRARY_DIRS})
|
|
|
|
endif()
|
|
|
|
target_include_directories(ragephoto-qtviewer PRIVATE ${RAGEPHOTO_INCLUDE_DIRS})
|
2021-09-04 17:13:03 +02:00
|
|
|
install(TARGETS ragephoto-qtviewer DESTINATION ${CMAKE_INSTALL_BINDIR})
|