libragephoto/CMakeLists.txt

139 lines
4.5 KiB
CMake
Raw Normal View History

#[[**************************************************************************
* libragephoto RAGE Photo Parser
* Copyright (C) 2021 Syping
*
* 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-25 00:30:10 +02:00
cmake_minimum_required(VERSION 3.7)
2021-11-03 10:54:35 +01:00
project(ragephoto VERSION 0.1.0 LANGUAGES CXX)
include(GNUInstallDirs)
2021-08-25 00:30:10 +02:00
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2021-11-09 03:25:27 +01:00
# RagePhoto CMake includes
include(cmake/unicode.cmake)
2021-11-06 14:52:25 +01:00
# RagePhoto Source files
2021-08-27 01:47:09 +02:00
set(RAGEPHOTO_HEADERS
src/RagePhoto.h
src/RagePhotoData.h
2021-08-27 01:47:09 +02:00
)
2021-08-27 21:48:33 +02:00
set(RAGEPHOTO_SOURCES
src/RagePhoto.cpp
)
2021-08-27 01:47:09 +02:00
2021-11-06 14:52:25 +01:00
# RagePhoto Library Type
2021-08-27 01:47:09 +02:00
option(BUILD_SHARED "Build libragephoto as shared library" ON)
if (BUILD_SHARED)
2021-10-29 11:52:59 +02:00
option(WITH_C_API "Build libragephoto with C API support" ON)
set(LIBRAGEPHOTO_LIBTYPE LIBRAGEPHOTO_SHARED)
2021-08-27 01:47:09 +02:00
else()
2021-10-29 11:52:59 +02:00
option(WITH_C_API "Build libragephoto with C API support" OFF)
set(LIBRAGEPHOTO_LIBTYPE LIBRAGEPHOTO_STATIC)
2021-08-27 01:47:09 +02:00
endif()
2021-11-06 14:52:25 +01:00
# RagePhoto Benchmark
2021-08-27 01:47:09 +02:00
option(WITH_BENCHMARK "Build with libragephoto benchmark" OFF)
2021-08-25 00:30:10 +02:00
if (WITH_BENCHMARK)
list(APPEND LIBRAGEPHOTO_DEFINES
RAGEPHOTO_BENCHMARK
)
endif()
2021-11-06 14:52:25 +01:00
# RagePhoto C API
2021-10-29 11:52:59 +02:00
if (WITH_C_API)
set(LIBRAGEPHOTO_API LIBRAGEPHOTO_C_API)
list(APPEND RAGEPHOTO_HEADERS
src/RagePhotoA.h
)
2021-10-29 11:52:59 +02:00
else()
set(LIBRAGEPHOTO_API LIBRAGEPHOTO_C_NOAPI)
endif()
# RagePhoto Win32 Shared Resources
if (WIN32)
string(TIMESTAMP ragephoto_BUILD_YEAR "%Y" UTC)
configure_file(src/ragephoto.rc.in resources/ragephoto.rc @ONLY)
list(APPEND RAGEPHOTO_SHARED_RESOURCES
${PROJECT_BINARY_DIR}/resources/ragephoto.rc
)
endif()
# RagePhoto Configures + Target + Installs
2021-11-06 14:52:25 +01:00
configure_file(src/ragephoto.pc.in pkgconfig/ragephoto.pc @ONLY)
configure_file(src/libragephoto_global.h.in include/libragephoto_global.h @ONLY)
list(APPEND RAGEPHOTO_HEADERS
2021-11-03 10:54:35 +01:00
${PROJECT_BINARY_DIR}/include/libragephoto_global.h
)
2021-11-06 14:52:25 +01:00
if (BUILD_SHARED)
add_library(ragephoto SHARED ${RAGEPHOTO_HEADERS} ${RAGEPHOTO_SOURCES} ${RAGEPHOTO_SHARED_RESOURCES})
set_target_properties(ragephoto PROPERTIES
PREFIX "lib"
)
2021-11-06 14:52:25 +01:00
else()
add_library(ragephoto STATIC ${RAGEPHOTO_HEADERS} ${RAGEPHOTO_SOURCES} ${RAGEPHOTO_STATIC_RESOURCES})
2021-11-06 14:52:25 +01:00
endif()
2021-08-26 00:22:11 +02:00
target_compile_definitions(ragephoto PRIVATE
2021-08-25 00:30:10 +02:00
LIBRAGEPHOTO_LIBRARY
${LIBRAGEPHOTO_DEFINES}
)
target_include_directories(ragephoto PUBLIC
2021-11-03 10:54:35 +01:00
${PROJECT_BINARY_DIR}/include
${PROJECT_SOURCE_DIR}/src
2021-08-29 03:06:14 +02:00
)
install(TARGETS ragephoto DESTINATION ${CMAKE_INSTALL_LIBDIR})
install(FILES ${RAGEPHOTO_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/RagePhoto)
2021-11-03 10:54:35 +01:00
install(FILES ${PROJECT_BINARY_DIR}/pkgconfig/ragephoto.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
2021-08-25 00:30:10 +02:00
2021-11-06 14:52:25 +01:00
# RagePhoto Documentation
2021-09-14 19:35:46 +02:00
option(WITH_DOCUMENTATION "Build libragephoto with documentation" OFF)
if (WITH_DOCUMENTATION)
add_subdirectory(doc)
endif()
2021-11-06 14:52:25 +01:00
# RagePhoto Examples
option(WITH_GTK_EXAMPLE "Build libragephoto with GTK Photo Viewer" OFF)
if (WITH_GTK_EXAMPLE)
2021-08-27 05:33:20 +02:00
add_subdirectory(examples/ragephoto-gtkviewer)
endif()
option(WITH_QT_EXAMPLE "Build libragephoto with Qt Photo Viewer" OFF)
if (WITH_QT_EXAMPLE)
add_subdirectory(examples/ragephoto-qtviewer)
endif()
2021-11-06 14:52:25 +01:00
# RagePhoto Extract Tool
if (${CMAKE_PROJECT_NAME} STREQUAL "ragephoto")
option(WITH_EXTRACT "Build libragephoto with ragephoto-extract" ON)
else()
option(WITH_EXTRACT "Build libragephoto with ragephoto-extract" OFF)
endif()
2021-08-27 01:47:09 +02:00
if (WITH_EXTRACT)
if (WITH_C_API)
enable_language(C)
set(EXTRACT_SOURCES src/RagePhoto-Extract.c)
else()
set(EXTRACT_SOURCES src/RagePhoto-Extract.cpp)
endif()
2021-08-27 01:47:09 +02:00
add_executable(ragephoto-extract ${RAGEPHOTO_HEADERS} ${EXTRACT_SOURCES})
set_target_properties(ragephoto-extract PROPERTIES
INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}
)
2021-08-27 21:48:33 +02:00
target_link_libraries(ragephoto-extract PRIVATE ragephoto)
install(TARGETS ragephoto-extract DESTINATION ${CMAKE_INSTALL_BINDIR})
2021-08-27 01:47:09 +02:00
endif()