-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add submodule of tinyxml2 and fix build * fix bugs in loading xml * remove tinyxml and update README * clean up cmake
- Loading branch information
1 parent
a4e45bd
commit a31a062
Showing
28 changed files
with
140 additions
and
8,347 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 |
---|---|---|
|
@@ -28,3 +28,4 @@ | |
*.app | ||
|
||
build | ||
bin |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "3rdparty/clipper"] | ||
path = 3rdparty/clipper | ||
url = https://github.com/skyrpex/clipper.git | ||
[submodule "3rdparty/tinyxml2"] | ||
path = 3rdparty/tinyxml2 | ||
url = https://github.com/leethomason/tinyxml2.git |
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 |
---|---|---|
@@ -1,6 +1,2 @@ | ||
# ADD_SUBDIRECTORY(clipper/cpp) | ||
SET(CLIPPER_FOLDER clipper/cpp) | ||
FILE(GLOB CLIPPER_SOURCES ${CLIPPER_FOLDER}/*.cpp) | ||
FILE(GLOB CLIPPER_HEADERS ${CLIPPER_FOLDER}/*.hpp) | ||
|
||
ADD_LIBRARY(polyclipping STATIC ${CLIPPER_SOURCES} ${CLIPPER_HEADERS}) | ||
ADD_LIBRARY(polyclipping STATIC clipper/cpp/clipper.cpp clipper/cpp/clipper.hpp) | ||
ADD_LIBRARY(tinyxml2 STATIC tinyxml2/tinyxml2.cpp tinyxml2/tinyxml2.h) |
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 |
---|---|---|
@@ -1,8 +1,5 @@ | ||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) | ||
PROJECT(LevelSyn) | ||
|
||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY $<1:${CMAKE_SOURCE_DIR}/bin>) | ||
|
||
ADD_SUBDIRECTORY(3rdparty) | ||
ADD_SUBDIRECTORY(lib) | ||
ADD_SUBDIRECTORY(src) |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.