-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
1,282 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 1.3.0.{build} | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
image: Visual Studio 2017 | ||
cache: C:\Tools\vcpkg\installed\ | ||
configuration: Release | ||
install: | ||
- cmd: cd C:\Tools\vcpkg\ && git pull | ||
- cmd: .\bootstrap-vcpkg.bat | ||
- cmd: vcpkg install assimp libepoxy sdl2 sdl2-mixer bullet3 tinyxml2 freeimage | ||
before_build: | ||
- cmd: cd C:\projects\glPortal | ||
- cmd: git submodule init && git submodule update | ||
- cmd: cmake -DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake . | ||
build: | ||
project: RadixEngine.sln | ||
parallel: true | ||
verbosity: normal | ||
test: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ docs/ | |
/Default | ||
/.* | ||
!.travis.yml | ||
!.appveyor.yml | ||
/glPortal.* | ||
/build | ||
Debug/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright (c) 2015 Andrew Kelley | ||
# This file is MIT licensed. | ||
# See http://opensource.org/licenses/MIT | ||
|
||
# This module defines | ||
# EPOXY_FOUND | ||
# EPOXY_INCLUDE_DIR | ||
# EPOXY_LIBRARY | ||
|
||
find_path(EPOXY_INCLUDE_DIR NAMES epoxy/gl.h epoxy/glx.h) | ||
|
||
find_library(EPOXY_LIBRARY NAMES epoxy) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(EPOXY DEFAULT_MSG EPOXY_LIBRARY EPOXY_INCLUDE_DIR) | ||
|
||
mark_as_advanced(EPOXY_INCLUDE_DIR EPOXY_LIBRARY) |
Submodule easy_profiler
updated
141 files
Submodule vhacd-lib
updated
17 files
+1 −0 | inc/btConvexHullComputer.h | |
+1 −1 | inc/btVector3.h | |
+2 −0 | inc/vhacdICHull.h | |
+3 −0 | inc/vhacdManifoldMesh.h | |
+2 −0 | inc/vhacdMesh.h | |
+1 −0 | inc/vhacdMutex.h | |
+1 −0 | inc/vhacdVHACD.h | |
+2 −0 | inc/vhacdVolume.h | |
+1 −0 | src/FloatMath.cpp | |
+1 −0 | src/VHACD.cpp | |
+2 −0 | src/btAlignedAllocator.cpp | |
+1 −0 | src/btConvexHullComputer.cpp | |
+1 −0 | src/vhacdICHull.cpp | |
+2 −0 | src/vhacdManifoldMesh.cpp | |
+1 −0 | src/vhacdMesh.cpp | |
+1 −0 | src/vhacdRaycastMesh.cpp | |
+1 −0 | src/vhacdVolume.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.