Skip to content

Commit f1e305f

Browse files
committed
Replace hard coded value with CMAKE_LIB_DIR
This allows override of CMAKE_LIB_DIR to lib64 (for instance) on platforms where that's the preferred destination for 64 bit DSOs. Signed-off-by: Jean-Francois Panisset <[email protected]>
1 parent 2c994d0 commit f1e305f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rawtoaces_idt/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ install(FILES
4242
DESTINATION include/rawtoaces
4343
)
4444

45-
install( TARGETS ${RAWTOACESIDTLIB} DESTINATION lib )
45+
install( TARGETS ${RAWTOACESIDTLIB} DESTINATION ${INSTALL_LIB_DIR} )

src/rawtoaces_util/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ install(FILES
4141
DESTINATION include/rawtoaces
4242
)
4343

44-
install( TARGETS ${RAWTOACESLIB} DESTINATION lib )
44+
install( TARGETS ${RAWTOACESLIB} DESTINATION ${INSTALL_LIB_DIR} )

0 commit comments

Comments
 (0)