Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
libvlcpp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libvlcpp
Commits
6d7297fc
Commit
6d7297fc
authored
Nov 04, 2020
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile.am: Properly link examples with libvlc
This fixes the build with gcc 10
parent
62b68f97
Pipeline
#35522
passed with stage
in 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Makefile.am
Makefile.am
+4
-1
No files found.
Makefile.am
View file @
6d7297fc
...
...
@@ -30,7 +30,6 @@ if HAVE_EXAMPLES
noinst_PROGRAMS
=
helloworld tests imem discovery
AM_CPPFLAGS
=
$(vlc_CFLAGS)
-Wextra
-Wall
AM_LDFLAGS
=
$(vlc_LIBS)
if
HAVE_WERROR
# This is meant to make our builds fail if a deprecated method is present
...
...
@@ -38,8 +37,12 @@ AM_CPPFLAGS += -Werror
endif
helloworld_SOURCES
=
examples/helloworld/main.cpp
helloworld_LDADD
=
$(vlc_LIBS)
imem_SOURCES
=
examples/imem/imem.cpp
imem_LDADD
=
$(vlc_LIBS)
tests_SOURCES
=
test
/main.cpp
tests_LDADD
=
$(vlc_LIBS)
discovery_SOURCES
=
examples/renderers/discovery.cpp
discovery_LDADD
=
$(vlc_LIBS)
endif
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