From: James Turner Date: Wed, 23 Oct 2013 13:18:39 +0000 (+0100) Subject: Ooops, fix INSTALL rule. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=95f77ef81d27a247a4cf0d7af20a2fe4a6021b6f;p=simgear.git Ooops, fix INSTALL rule. We need the rule, just not the export, for now. --- diff --git a/simgear/CMakeLists.txt b/simgear/CMakeLists.txt index 23d6fe95..6239522e 100644 --- a/simgear/CMakeLists.txt +++ b/simgear/CMakeLists.txt @@ -63,7 +63,8 @@ if(SIMGEAR_SHARED) set_property(TARGET SimGearScene PROPERTY VERSION ${SIMGEAR_VERSION}) set_property(TARGET SimGearScene PROPERTY SOVERSION ${SIMGEAR_SOVERSION}) - # install(TARGETS SimGearScene EXPORT SimGearSceneConfig LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ) + # EXPORT SimGearSceneConfig + install(TARGETS SimGearScene LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ) # install(EXPORT SimGearSceneConfig DESTINATION share/SimGearScene) endif()