feat: basic support for cpack
This commit is contained in:
parent
11ea4c9063
commit
a6cfd1a714
|
@ -69,16 +69,28 @@ if (WIN32)
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
# Helper macros for install settings
|
||||||
|
macro (ppic_convert_to_relative_path _var)
|
||||||
|
# Make sure _var is a relative path
|
||||||
|
if (IS_ABSOLUTE "${${_var}}")
|
||||||
|
file (RELATIVE_PATH ${_var} "${CMAKE_INSTALL_PREFIX}" "${${_var}}")
|
||||||
|
endif ()
|
||||||
|
endmacro ()
|
||||||
|
|
||||||
# Install settings
|
# Install settings
|
||||||
if (UNIX)
|
if (WIN32)
|
||||||
|
# FIXME: try to avoid install to a "bin" subfolder under windows...
|
||||||
|
# when fixed, don't forget to update the CI config file...
|
||||||
|
set (BIN_INSTALL_DIR "") # seems useless, don't know why...
|
||||||
|
elseif (UNIX)
|
||||||
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
||||||
set(CMAKE_INSTALL_PREFIX /usr)
|
set(CMAKE_INSTALL_PREFIX /usr)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
install (
|
set (BIN_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}") # relative, usually "bin"
|
||||||
TARGETS ${EXE_NAME}
|
ppic_convert_to_relative_path(BIN_INSTALL_DIR)
|
||||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
set (LIB_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}") # "lib" or "lib64"
|
||||||
)
|
ppic_convert_to_relative_path(LIB_INSTALL_DIR)
|
||||||
|
|
||||||
# install icon
|
# install icon
|
||||||
install (
|
install (
|
||||||
|
@ -92,5 +104,42 @@ if (UNIX)
|
||||||
FILES pineapple-pictures.desktop
|
FILES pineapple-pictures.desktop
|
||||||
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
||||||
)
|
)
|
||||||
endif (UNIX)
|
endif()
|
||||||
|
|
||||||
|
set (INSTALL_TARGETS_DEFAULT_ARGS
|
||||||
|
RUNTIME DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
LIBRARY DESTINATION ${LIB_INSTALL_DIR}
|
||||||
|
ARCHIVE DESTINATION ${LIB_INSTALL_DIR} COMPONENT Devel
|
||||||
|
)
|
||||||
|
|
||||||
|
install (
|
||||||
|
TARGETS ${EXE_NAME}
|
||||||
|
${INSTALL_TARGETS_DEFAULT_ARGS}
|
||||||
|
)
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}/translations")
|
||||||
|
else ()
|
||||||
|
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/pineapple-pictures/translations")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
install (
|
||||||
|
FILES ${PPIC_QM_FILES}
|
||||||
|
DESTINATION ${QM_FILE_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
# CPACK: General Settings
|
||||||
|
set (CPACK_GENERATOR "TBZ2")
|
||||||
|
set (CPACK_PACKAGE_NAME "PineapplePictures")
|
||||||
|
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Yet another image viewer")
|
||||||
|
set (CPACK_PACKAGE_VENDOR "Gary Wang")
|
||||||
|
set (CPACK_PACKAGE_CONTACT "https://github.com/BLumia/PineapplePictures/issues/")
|
||||||
|
if (WIN32)
|
||||||
|
# ...
|
||||||
|
elseif (APPLE)
|
||||||
|
# ...
|
||||||
|
elseif (UNIX)
|
||||||
|
set(CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include(CPack)
|
||||||
|
|
11
appveyor.yml
11
appveyor.yml
|
@ -15,12 +15,13 @@ install:
|
||||||
build_script:
|
build_script:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake -G "Unix Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make ..\
|
- cmake -G "Unix Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_INSTALL_PREFIX='%cd%' ..\
|
||||||
- mingw32-make
|
- mingw32-make
|
||||||
- mkdir cmake_release_folder
|
- mingw32-make install
|
||||||
- cd cmake_release_folder
|
# fixme: I don't know how to NOT make the binary installed to the ./bin/ folder...
|
||||||
- copy ..\ppic.exe .\
|
- cd bin
|
||||||
- windeployqt --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler --release .\ppic.exe
|
- windeployqt --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler --release .\ppic.exe
|
||||||
|
- tree
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: build\cmake_release_folder
|
- path: build\bin
|
||||||
|
|
Loading…
Reference in New Issue
Block a user