Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KTorrent
Commits
ed40a399
Commit
ed40a399
authored
Dec 30, 2021
by
Andrius Štikonas
Committed by
Alexander Lohnau
Jan 02, 2022
Browse files
Fix missing include directory warnings.
parent
ff362526
Pipeline
#117130
passed with stage
in 2 minutes and 13 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
ed40a399
...
...
@@ -206,7 +206,6 @@ add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
set
(
KTORRENT_DBUS_XML_DIR
${
CMAKE_SOURCE_DIR
}
/dbus_xml
)
set
(
KTORRENT_PLUGIN_INSTALL_DIR
${
PLUGIN_INSTALL_DIR
}
/ktorrent
)
include_directories
(
Boost::boost
)
add_subdirectory
(
libktcore
)
add_subdirectory
(
plugins
)
...
...
libktcore/CMakeLists.txt
View file @
ed40a399
...
...
@@ -71,7 +71,7 @@ target_link_libraries(ktcore PUBLIC
KF5::XmlGui
)
target_include_directories
(
ktcore PUBLIC
"$<BUILD_INTERFACE:
${
CMAKE_SOURCE_DIR
}
/libktcore
;
${
KTORRENT_BINARY_DIR
}
/libktcore;
${
KTORRENT_BINARY_DIR
}
>"
)
target_include_directories
(
ktcore PUBLIC
"$<BUILD_INTERFACE:
${
CMAKE_SOURCE_DIR
}
/libktcore>"
)
install
(
TARGETS ktcore
${
INSTALL_TARGETS_DEFAULT_ARGS
}
LIBRARY NAMELINK_SKIP
)
plugins/infowidget/CMakeLists.txt
View file @
ed40a399
...
...
@@ -14,7 +14,7 @@ if (BUILD_WITH_GEOIP)
message
(
WARNING
"GeoIP library development files could not be found on your system."
)
else
()
message
(
STATUS
" Linking InfoWidget against system GeoIP library"
)
include_directories
(
GEOIP_INCLUDE_DIR
)
include_directories
(
${
GEOIP_INCLUDE_DIR
}
)
set
(
geoip_link
${
GEOIP_LIBRARY
}
)
endif
()
endif
(
BUILD_WITH_GEOIP
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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