mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
fix more types and turn on benchmarks build on appveyor and travis
This commit is contained in:
parent
33fdfd7ead
commit
07d31cdbb3
|
@ -13,7 +13,7 @@ init: []
|
||||||
install: []
|
install: []
|
||||||
before_build:
|
before_build:
|
||||||
- git submodule update --init --recursive --remote
|
- git submodule update --init --recursive --remote
|
||||||
- cmake -H. -Bbuild -G"Visual Studio 14 2015 Win64" -DSTATIC=%STATIC% -DSAMPLES=ON
|
- cmake -H. -Bbuild -G"Visual Studio 14 2015 Win64" -DSTATIC=%STATIC% -DSAMPLES=ON -DBENCHMARKS=ON
|
||||||
|
|
||||||
build:
|
build:
|
||||||
project: build/xlnt_all.sln
|
project: build/xlnt_all.sln
|
||||||
|
|
|
@ -26,6 +26,7 @@ matrix:
|
||||||
- COVERAGE=ON
|
- COVERAGE=ON
|
||||||
- STATIC=ON
|
- STATIC=ON
|
||||||
- SAMPLES=OFF
|
- SAMPLES=OFF
|
||||||
|
- BENCHMARKS=OFF
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
@ -41,11 +42,12 @@ matrix:
|
||||||
- COVERAGE=OFF
|
- COVERAGE=OFF
|
||||||
- STATIC=OFF
|
- STATIC=OFF
|
||||||
- SAMPLES=ON
|
- SAMPLES=ON
|
||||||
|
- BENCHMARKS=ON
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake -D STATIC=$STATIC -D SAMPLES=$SAMPLES -D COVERAGE=$COVERAGE -D CMAKE_CXX_COMPILER=$COMPILER -D CMAKE_BUILD_TYPE=Debug ..
|
- cmake -D STATIC=$STATIC -D BENCHMARKS=$BENCHMARKS -D SAMPLES=$SAMPLES -D COVERAGE=$COVERAGE -D CMAKE_CXX_COMPILER=$COMPILER -D CMAKE_BUILD_TYPE=Debug ..
|
||||||
- cmake --build .
|
- cmake --build .
|
||||||
- cd bin && ./xlnt.test
|
- cd bin && ./xlnt.test
|
||||||
- cd ..
|
- cd ..
|
||||||
|
|
|
@ -104,7 +104,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
cell cell(std::size_t column_index);
|
class cell cell(std::size_t column_index);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
|
@ -114,7 +114,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
cell cell(const cell_reference &ref);
|
class cell cell(const cell_reference &ref);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
|
@ -333,7 +333,7 @@ private:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convenience method to access the target workbook's manifest.
|
/// Convenience method to access the target workbook's manifest.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
manifest &manifest();
|
class manifest &manifest();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The ZIP file containing the files that make up the OOXML package.
|
/// The ZIP file containing the files that make up the OOXML package.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user