From: James Turner Date: Mon, 20 Dec 2010 14:46:53 +0000 (+0000) Subject: 64-bit compatability tweak from papillion X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b6a20fd6e44f58eaa50940596177c7f937b84bd3;p=simgear.git 64-bit compatability tweak from papillion --- diff --git a/CMakeModules/SimGearComponent.cmake b/CMakeModules/SimGearComponent.cmake index afa02a96..15055628 100644 --- a/CMakeModules/SimGearComponent.cmake +++ b/CMakeModules/SimGearComponent.cmake @@ -16,7 +16,7 @@ macro(simgear_component name includePath sources headers) set(libName "sg${name}") add_library(${libName} STATIC ${sources} ) - install (TARGETS ${libName} ARCHIVE DESTINATION lib) + install (TARGETS ${libName} ARCHIVE DESTINATION lib${LIB_SUFFIX}) install (FILES ${headers} DESTINATION include/simgear/${includePath}) endif()