Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
1b010996
Commit
1b010996
authored
Sep 16, 2015
by
Hugo Beauzée-Luyssen
Browse files
libvlcpp is now a header only library
parent
02346c13
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
1b010996
...
...
@@ -69,11 +69,9 @@ find_package(Sqlite3 REQUIRED)
add_library
(
${
PROJECT_NAME
}
${
SRC_LIST
}
)
target_link_libraries
(
${
PROJECT_NAME
}
${
SQLITE3_LIBRARIES
}
)
find_package
(
LIBVLC REQUIRED
)
target_link_libraries
(
${
PROJECT_NAME
}
${
LIBVLC_LIBRARY
}
${
LIBVLCCORE_LIBRARY
}
)
include_directories
(
${
LIBVLC_INCLUDE_DIR
}
)
find_package
(
vlcpp 2.2.0 REQUIRED
)
target_link_libraries
(
${
PROJECT_NAME
}
${
LIBVLCPP_LIBRARIES
}
)
include_directories
(
${
LIBVLCPP_INCLUDE_DIR
}
)
set
(
LIBVLCPP_DIR
""
CACHE PATH
"Path to libvlcpp's directory"
)
include_directories
(
${
LIBVLCPP_DIR
}
)
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