mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-16 18:25:11 -06:00
12 lines
422 B
CMake
12 lines
422 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)
|