diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-25 18:55:31 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-25 18:55:31 +0200 |
commit | 45b4a12413a33e3eb1543fcef5eca238bab31446 (patch) | |
tree | cae156a0f2965f49b49259146aa3122e1e608eac | |
parent | a7e9d910af516e76c56b582c65a3c47d6ad4cb77 (diff) |
cmake: don't install .a files
-rw-r--r-- | cmake/opentrack-hier.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-hier.cmake b/cmake/opentrack-hier.cmake index 1cdfff89..a5e4fd77 100644 --- a/cmake/opentrack-hier.cmake +++ b/cmake/opentrack-hier.cmake @@ -40,7 +40,7 @@ else() set(opentrack-i18n-pfx "./share/opentrack/i18n") set(opentrack-i18n-path "../share/opentrack/i18n") endif() -set(opentrack-hier-str ARCHIVE DESTINATION lib/opentrack RUNTIME DESTINATION ${opentrack-hier-pfx} LIBRARY DESTINATION ${opentrack-hier-pfx}) +set(opentrack-hier-str RUNTIME DESTINATION ${opentrack-hier-pfx} LIBRARY DESTINATION ${opentrack-hier-pfx}) function(otr_escape_string var str) string(REGEX REPLACE "([^_A-Za-z0-9./:-])" "\\\\\\1" str "${str}") |