forked from tesseract-ocr/tesseract
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
24 additions
and
0 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,24 @@ | ||
os: Visual Studio 2015 | ||
|
||
platform: | ||
- Win32 | ||
- Win64 | ||
|
||
configuration: | ||
- Debug | ||
|
||
before_build: | ||
- if %platform%==Win32 set generator=Visual Studio 14 | ||
- if %platform%==Win64 set generator=Visual Studio 14 Win64 | ||
- if %platform%==Win32 set vcplatform=Win32 | ||
- if %platform%==Win64 set vcplatform=x64 | ||
- ps: Start-FileDownload 'https://github.com/egorpugin/leptonica/archive/master.zip' -FileName leptonica.zip | ||
- 7z x leptonica.zip | ||
- cmake -Hleptonica-master -Bleptonica-master/build | ||
- make -C leptonica-master/build | ||
|
||
build_script: | ||
- mkdir build | ||
- cd build | ||
- cmake .. -G "%generator%" -DLeptonica_DIR=leptonica-master/build | ||
- msbuild tesseract.sln /p:Platform=%vcplatform% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" |