Fix header installation for shared build

This commit is contained in:
James Turner
2011-11-30 09:45:32 +00:00
parent 42b7c48671
commit fee652d54a
2 changed files with 4 additions and 4 deletions

View File

@@ -17,8 +17,9 @@ macro(simgear_component_common name includePath sourcesList sources headers)
add_library(${libName} STATIC ${sources} ${headers})
install (TARGETS ${libName} ARCHIVE DESTINATION lib${LIB_SUFFIX})
install (FILES ${headers} DESTINATION include/simgear/${includePath})
endif()
install (FILES ${headers} DESTINATION include/simgear/${includePath})
endmacro()
function(simgear_component name includePath sources headers)