From b6a20fd6e44f58eaa50940596177c7f937b84bd3 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 20 Dec 2010 14:46:53 +0000 Subject: [PATCH] 64-bit compatability tweak from papillion --- CMakeModules/SimGearComponent.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.39.5