Skip to content

Commit 973b823

Browse files
committed
fix mltframework#1291 CuteLogger install to use libdir
1 parent b11055c commit 973b823

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

CuteLogger/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ FIND_PACKAGE(Qt5Core REQUIRED)
66

77
ADD_DEFINITIONS(-DCUTELOGGER_LIBRARY)
88

9+
INCLUDE(GNUInstallDirs)
10+
911
INCLUDE_DIRECTORIES(BEFORE include)
1012

1113
SET(sources
@@ -39,4 +41,4 @@ SET(library_target CuteLogger)
3941

4042
ADD_LIBRARY(${library_target} SHARED ${sources} ${includes})
4143
TARGET_LINK_LIBRARIES(${library_target} Qt5::Core)
42-
INSTALL(TARGETS ${library_target} DESTINATION lib)
44+
INSTALL(TARGETS ${library_target} DESTINATION ${CMAKE_INSTALL_LIBDIR})

0 commit comments

Comments
 (0)