Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Graphics
digiKam
Commits
83630d93
Commit
83630d93
authored
Feb 20, 2014
by
Gilles Caulier
🗼
Browse files
fix lensfun linkage with right rules
BUGS: 323284
FIXED-IN: 4.0.0
parent
3a201877
Changes
2
Hide whitespace changes
Inline
Side-by-side
digikam/CMakeLists.txt
View file @
83630d93
...
...
@@ -116,9 +116,17 @@ ENDIF(Q_WS_X11)
# For Contents Aware Resizer and Lens auto-correction tools.
IF
(
GLIB2_FOUND
)
TARGET_LINK_LIBRARIES
(
digikamcore
${
GLIB2_LIBRARIES
}
${
liblqr_LIBS
}
${
liblensfun_LIBS
}
)
TARGET_LINK_LIBRARIES
(
digikamcore
${
GLIB2_LIBRARIES
}
)
ENDIF
(
GLIB2_FOUND
)
IF
(
LENSFUN_FOUND
)
TARGET_LINK_LIBRARIES
(
digikamcore
${
LENSFUN_LIBRARIES
}
)
ENDIF
(
LENSFUN_FOUND
)
IF
(
LQR-1_FOUND
)
TARGET_LINK_LIBRARIES
(
digikamcore
${
liblqr_LIBS
}
)
ENDIF
(
LQR-1_FOUND
)
SET_TARGET_PROPERTIES
(
digikamcore PROPERTIES VERSION
${
DIGIKAM_VERSION_SHORT
}
SOVERSION
${
DIGIKAM_VERSION_SHORT
}
)
IF
(
WIN32
)
...
...
tests/CMakeLists.txt
View file @
83630d93
...
...
@@ -347,6 +347,8 @@ IF(LENSFUN_FOUND)
# To link under Solaris (see B.K.O #274484)
${
MATH_LIBRARY
}
${
LENSFUN_LIBRARIES
}
)
ENDIF
()
...
...
@@ -377,4 +379,3 @@ TARGET_LINK_LIBRARIES (testautocrop
${
KDCRAW_LIBRARIES
}
${
OpenCV_LIBRARIES
}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment