Skip to content

Commit

Permalink
Migrate all managed code of CppSharp to .NET Core
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
  • Loading branch information
ddobrev committed Mar 25, 2020
1 parent 6fe81fd commit dda7635
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
- source build/InstallMono.sh
- build/InstallNugets.sh
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$CXX" = "g++" ]; then export CXX="g++-7" CC="gcc-7"; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then PREMAKE=build/premake5-linux-64; else PREMAKE=build/premake5-osx; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then PREMAKE=build/premake5-linux; else PREMAKE=build/premake5-osx; fi
- $PREMAKE --file=build/scripts/LLVM.lua download_llvm

script: |
Expand Down
2 changes: 1 addition & 1 deletion build/Compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CUR_DIR=$(cd "$(dirname "$0")"; pwd)
if [ "$(uname)" == "Darwin" ]; then
PREMAKE=$CUR_DIR/premake5-osx;
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
PREMAKE=$CUR_DIR/premake5-linux-64;
PREMAKE=$CUR_DIR/premake5-linux;
fi

MONO=mono
Expand Down
Binary file modified build/premake5-linux
Binary file not shown.
Binary file removed build/premake5-linux-64
Binary file not shown.
Binary file modified build/premake5-osx
Binary file not shown.
Binary file modified build/premake5.exe
Binary file not shown.

0 comments on commit dda7635

Please sign in to comment.