mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 08:57:17 -06:00
7dc59950a5
This also means the appdata file now requires preprocessing to set this info automatically.
15 lines
525 B
CMake
15 lines
525 B
CMake
# Post install actions go here.
|
|
|
|
if (APPLE)
|
|
install(CODE "execute_process(
|
|
COMMAND /usr/bin/install_name_tool -add_rpath ${CMAKE_INSTALL_LIBDIR}
|
|
-add_rpath ${PKGLIBDIR}
|
|
${CMAKE_INSTALL_BINDIR}/gnucash)")
|
|
endif(APPLE)
|
|
|
|
|
|
set_dist_list(cmake_DIST CMakeLists.txt README_CMAKE.txt cmake_uninstall.cmake.in
|
|
configure-appdata.cmake configure-manpage.cmake git2version-info.cmake
|
|
version-info2env.cmake
|
|
)
|