Browse Source

* Renamed DotNet/ to csharp/ because I hate mixed case.

tags/v0.99.beta14
Sam Hocevar sam 17 years ago
parent
commit
5791b183c5
10 changed files with 10 additions and 10 deletions
  1. +1
    -1
      Makefile.am
  2. +8
    -8
      configure.ac
  3. +0
    -0
      csharp/.gitignore
  4. +0
    -0
      csharp/AssemblyInfo.cs
  5. +0
    -0
      csharp/Caca.cs
  6. +0
    -0
      csharp/Cucul.cs
  7. +1
    -1
      csharp/Makefile.am
  8. +0
    -0
      csharp/libCaca.dll.config
  9. +0
    -0
      csharp/libCucul.dll.config
  10. +0
    -0
      csharp/test.cs

+ 1
- 1
Makefile.am View File

@@ -1,6 +1,6 @@
# $Id$

SUBDIRS = kernel cucul caca src test tools cxx DotNet ruby doc
SUBDIRS = kernel cucul caca src test tools csharp cxx ruby doc
DIST_SUBDIRS = $(SUBDIRS) msvc

EXTRA_DIST = NOTES COPYING.GPL COPYING.LGPL bootstrap build-dos build-kernel build-win32 caca-config.in common.h libcaca.spec


+ 8
- 8
configure.ac View File

@@ -60,10 +60,10 @@ AC_ARG_ENABLE(vga,
[ --enable-vga VGA support (default disabled)])

dnl language bindings
AC_ARG_ENABLE(csharp,
[ --enable-csharp C# bindings (autodetected)])
AC_ARG_ENABLE(cxx,
[ --enable-cxx C++ bindings (default enabled)])
AC_ARG_ENABLE(dotnet,
[ --enable-dotnet .NET bindings (autodetected)])
AC_ARG_ENABLE(ruby,
[ --enable-ruby Ruby bindings (autodetected)])

@@ -321,15 +321,15 @@ if test "${enable_cxx}" != "no"; then
fi
AM_CONDITIONAL(USE_CXX, test "${ac_cv_my_have_cxx}" = "yes")

# Build the DotNet bindings?
ac_cv_my_have_dotnet="no"
if test "${enable_dotnet}" != "no"; then
# Build the .NET bindings?
ac_cv_my_have_csharp="no"
if test "${enable_csharp}" != "no"; then
AC_PATH_PROG(GMCS, gmcs, no)
if test "${GMCS}" != "no"; then
ac_cv_my_have_dotnet="yes"
ac_cv_my_have_csharp="yes"
fi
fi
AM_CONDITIONAL(USE_DOTNET, test "${ac_cv_my_have_dotnet}" = "yes")
AM_CONDITIONAL(USE_CSHARP, test "${ac_cv_my_have_csharp}" = "yes")

# Build the Ruby bindings?
ac_cv_my_have_ruby="no"
@@ -411,8 +411,8 @@ AC_CONFIG_FILES([
src/Makefile
test/Makefile
tools/Makefile
csharp/Makefile
cxx/Makefile
DotNet/Makefile
ruby/Makefile
doc/Makefile
msvc/Makefile


DotNet/.gitignore → csharp/.gitignore View File


DotNet/AssemblyInfo.cs → csharp/AssemblyInfo.cs View File


DotNet/Caca.cs → csharp/Caca.cs View File


DotNet/Cucul.cs → csharp/Cucul.cs View File


DotNet/Makefile.am → csharp/Makefile.am View File

@@ -1,6 +1,6 @@
# $Id: $

if USE_DOTNET
if USE_CSHARP
noinst_DATA = libCucul.dll libCaca.dll test.exe
endif


DotNet/libCaca.dll.config → csharp/libCaca.dll.config View File


DotNet/libCucul.dll.config → csharp/libCucul.dll.config View File


DotNet/test.cs → csharp/test.cs View File


Loading…
Cancel
Save