Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
460fa6b7
Commit
460fa6b7
authored
Oct 26, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Actually build targets
parent
a2aa6ae3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
1 deletion
+31
-1
bindings/cil/configure.ac
bindings/cil/configure.ac
+6
-1
bindings/cil/src/Makefile.am
bindings/cil/src/Makefile.am
+14
-0
bindings/cil/tests/Makefile.am
bindings/cil/tests/Makefile.am
+11
-0
No files found.
bindings/cil/configure.ac
View file @
460fa6b7
...
...
@@ -21,12 +21,17 @@ dnl ***********************************************************************
AC_COPYRIGHT([Copyright (C) 2004-2007 Remi Denis-Courmont])
AC_INIT(libvlc-cil, 0.9.0, vlc-devel_no_bulk_mail@videolan.org)
AC_PREREQ(2.5
9c
)
AC_PREREQ(2.5
0
)
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_AUX_DIR(admin)
AC_CONFIG_MACRO_DIR(m4)
AC_ARG_VAR([CSC], [C sharp compiler command])
AC_ARG_VAR([CSFLAGS], [C sharp compiler flags])
AC_PATH_PROG([CSC], [gmcs csc], [false])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([Makefile m4/Makefile src/Makefile tests/Makefile])
...
...
bindings/cil/src/Makefile.am
View file @
460fa6b7
EXTRA_DIST
=
$(SOURCES_dll)
MOSTLYCLEANFILES
=
$(pkglib_SCRIPTS)
pkglib_SCRIPTS
=
VideoLAN.LibVLC.dll
SOURCES_dll
=
\
ustring.cs
\
exception.cs
\
marshal.cs
\
libvlc.cs
VideoLAN.LibVLC.dll
:
$(SOURCES_dll)
$(CSC)
-target
:library
-out
:
$@
$(CSFLAGS)
$^
bindings/cil/tests/Makefile.am
View file @
460fa6b7
EXTRA_DIST
=
$(SOURCES_testvlc)
MOSTLYCLEANFILES
=
$(check_SCRIPTS)
check_SCRIPTS
=
testvlc.exe
SOURCES_testvlc
=
testvlc.cs
LDADD_testvlc
=
-lib
:../src
-r
:VideoLAN.LibVLC.dll
testvlc.exe
:
$(SOURCES_testvlc)
$(CSC)
-target
:exe
-out
:
$@
$(CSFLAGS)
$^
$(LDADD_testvlc)
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