Don't install tix and tk_dnd on Mac if appropriate variables are not set

This commit is contained in:
Matthias Hochsteger 2016-03-15 17:49:58 +01:00
parent 5e45ae7db4
commit 24324c1ab9

View File

@ -290,8 +290,12 @@ if(INSTALL_DEPENDENCIES)
install( FILES "${Boost_LIBRARIES}" DESTINATION ${ng_install_dir_lib} COMPONENT netgen )
get_filename_component(MY_LIB_DIR ${TK_LIBRARY} DIRECTORY)
if(APPLE)
install( DIRECTORY "${TIX_LIBRARY}" DESTINATION ${ng_install_dir_lib} COMPONENT netgen )
install( DIRECTORY "${TK_DND_LIBRARY}" DESTINATION ${ng_install_dir_lib} COMPONENT netgen )
if(TIX_LIBRARY)
install( DIRECTORY "${TIX_LIBRARY}" DESTINATION ${ng_install_dir_lib} COMPONENT netgen )
endif(TIX_LIBRARY)
if(TK_DND_LIBRARY)
install( DIRECTORY "${TK_DND_LIBRARY}" DESTINATION ${ng_install_dir_lib} COMPONENT netgen )
endif(TK_DND_LIBRARY)
endif(APPLE)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/fixup.cmake "\
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules/netgen_fixup.cmake)