diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-12-06 15:28:04 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-12-06 15:28:04 +0100 |
commit | 1382f3ddb7d28b59432c8c32455734bada2b6016 (patch) | |
tree | 78c3c8befc792d00a7957e4e6f8d71b5890aea66 | |
parent | a69b55c674b0528c00598bea54b7a661f4e49f27 (diff) | |
download | tqscintilla-1382f3ddb7d28b59432c8c32455734bada2b6016.tar.gz tqscintilla-1382f3ddb7d28b59432c8c32455734bada2b6016.zip |
cmake: Install the library to the default system location.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 12 |
2 files changed, 4 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 00cb74c..2f882b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,7 @@ include( CheckIncludeFile ) include( CheckLibraryExists ) include( CheckCSourceCompiles ) include( CheckCXXSourceCompiles ) +include( GNUInstallDirs OPTIONAL ) #### include our cmake modules @@ -35,6 +36,9 @@ include( TDEMacros ) ##### setup install paths +if( CMAKE_INSTALL_LIBDIR ) + tde_setup_install_path( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" ) +endif() include( TDESetupPaths ) tde_setup_paths( ) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 5ee5651..b1399ef 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -58,15 +58,3 @@ execute_process( ) set( TQT_INCLUDES_DIR ${_includedir} ) message( STATUS "TQT include directory: ${TQT_INCLUDES_DIR}" ) - - -##### Look for tqt3 libraries location - -execute_process( - COMMAND ${PKG_CONFIG_EXECUTABLE} tqt-mt --variable=libdir - OUTPUT_VARIABLE _libdir - RESULT_VARIABLE _result - OUTPUT_STRIP_TRAILING_WHITESPACE -) -set( TQT_LIBDIR ${_libdir} ) -message( STATUS "TQT libraries directory: ${TQT_LIBDIR}" ) |