diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-03-23 00:03:29 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-03-23 00:03:29 +0100 |
commit | 2cf0eaffddab2457fc81d672599c0f58eb6950f9 (patch) | |
tree | f1964cdc4d9a4f7ff8ffa15b2a359cdad55a58d8 /src/CMakeLists.txt | |
parent | eb11e68412b49b0945ab6bb332ac9486f1ebeb9e (diff) | |
parent | df33203db5007218384e6724748be52a1d4fdb25 (diff) | |
download | osmo-fl2k-2cf0eaffddab2457fc81d672599c0f58eb6950f9.tar.gz osmo-fl2k-2cf0eaffddab2457fc81d672599c0f58eb6950f9.tar.bz2 osmo-fl2k-2cf0eaffddab2457fc81d672599c0f58eb6950f9.zip |
Merge remote-tracking branch 'upstream/master' into interleaved_rg
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1d788de..f63780a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -15,6 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +include(GNUInstallDirs) + MACRO(LIBFL2K_APPEND_SRCS) LIST(APPEND libosmo-fl2k_srcs ${ARGV}) ENDMACRO(LIBFL2K_APPEND_SRCS) @@ -124,7 +126,7 @@ endif() # Install built library files & utilities ######################################################################## install(TARGETS ${INSTALL_TARGETS} - LIBRARY DESTINATION ${LIB_INSTALL_DIR} # .so/.dylib file - ARCHIVE DESTINATION ${LIB_INSTALL_DIR} # .lib file + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} # .so/.dylib file + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} # .lib file RUNTIME DESTINATION bin # .dll file ) |