Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix project name
· a85bf852
Hugo Beauzée-Luyssen
authored
Jul 07, 2016
a85bf852
Makefile.am: Use proper variable syntax
· e13b1c43
Hugo Beauzée-Luyssen
authored
Jul 07, 2016
e13b1c43
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
e13b1c43
...
...
@@ -27,8 +27,8 @@ pkgconfig_DATA = libvlcpp.pc
if
HAVE_EXAMPLES
noinst_PROGRAMS
=
helloworld tests imem
AM_CPPFLAGS
=
$
{
vlc_CFLAGS
}
AM_LDFLAGS
=
$
{
vlc_LIBS
}
AM_CPPFLAGS
=
$
(
vlc_CFLAGS
)
AM_LDFLAGS
=
$
(
vlc_LIBS
)
helloworld_SOURCES
=
examples/helloworld/main.cpp
imem_SOURCES
=
examples/imem/imem.cpp
...
...
configure.ac
View file @
e13b1c43
...
...
@@ -4,7 +4,7 @@ m4_define([VLCPP_MICRO], [0])
AC_COPYRIGHT([Copyright 2014-2016 VideoLAN - VideoLabs])
AC_INIT([
medialibrary
], [VLCPP_MAJOR.VLCPP_MINOR.VLCPP_MICRO])
AC_INIT([
libvlcpp
], [VLCPP_MAJOR.VLCPP_MINOR.VLCPP_MICRO])
AM_INIT_AUTOMAKE([foreign subdir-objects])
m4_ifdef([AM_SILENT_RULES], [
...
...