64-bit compatability tweak from papillion

This commit is contained in:
James Turner 2010-12-20 14:46:53 +00:00
parent ae9757bf43
commit b6a20fd6e4

View File

@ -16,7 +16,7 @@ macro(simgear_component name includePath sources headers)
set(libName "sg${name}") set(libName "sg${name}")
add_library(${libName} STATIC ${sources} ) 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}) install (FILES ${headers} DESTINATION include/simgear/${includePath})
endif() endif()