-
Notifications
You must be signed in to change notification settings - Fork 6
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
167 changed files
with
69,253 additions
and
287 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 |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "src/cppformat"] | ||
path = src/cppformat | ||
url = https://github.com/cppformat/cppformat | ||
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
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
Submodule cppformat
deleted from
5f8af5
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,18 @@ | ||
bin/ | ||
/_CPack_Packages | ||
/doc/doxyxml | ||
/doc/html | ||
/doc/virtualenv | ||
/Testing | ||
/install_manifest.txt | ||
*~ | ||
*.a | ||
*.so* | ||
*.zip | ||
cmake_install.cmake | ||
CPack*Config.cmake | ||
CTestTestfile.cmake | ||
CMakeCache.txt | ||
CMakeFiles | ||
Makefile | ||
run-msbuild.bat |
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,31 @@ | ||
language: cpp | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
env: | ||
global: | ||
- secure: |- | ||
Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt | ||
0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr | ||
6pxmyzLHSn1ZR7OX5rfPvwM3tOyZ3H0= | ||
matrix: | ||
- BUILD=Doc | ||
- BUILD=Debug | ||
- BUILD=Release | ||
|
||
matrix: | ||
exclude: | ||
- os: osx | ||
env: BUILD=Doc | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- kubuntu-backports # cmake 2.8.12 | ||
packages: | ||
- cmake | ||
|
||
script: | ||
- support/travis-build.py |
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,15 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := cppformat_static | ||
LOCAL_MODULE_FILENAME := libcppformat | ||
|
||
LOCAL_SRC_FILES := cppformat/format.cc | ||
|
||
LOCAL_C_INCLUDES := $(LOCAL_PATH) | ||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) | ||
|
||
LOCAL_CFLAGS += -std=c++11 -fexceptions | ||
|
||
include $(BUILD_STATIC_LIBRARY) | ||
|
Oops, something went wrong.