Commit 0740e402e0cfbbfad0481fc0db4fdda8e53cfbe1

Authored by Petr Orlov
1 parent 74bf7b49

add static library intallation

Showing 1 changed file with 3 additions and 0 deletions
CMakeLists.txt
... ... @@ -184,6 +184,9 @@ endif()
184 184 # Install the dynamic library to /usr/lib[64]
185 185 install(TARGETS redox DESTINATION lib${LIB_SUFFIX})
186 186  
  187 +# Install the static library to /usr/lib[64]
  188 +install(TARGETS redox_static DESTINATION lib${LIB_SUFFIX})
  189 +
187 190 # Install the headers into /usr/include/redox
188 191 install(FILES ${INC_REDOX_CORE} DESTINATION include/redox)
189 192 install(FILES ${INC_REDOX_UTILS} DESTINATION include/redox/utils)
... ...