File: appveyor.yml

package info (click to toggle)
ecl 24.5.10%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,812 kB
  • sloc: ansic: 190,405; lisp: 68,972; xml: 8,221; asm: 5,551; sh: 3,384; makefile: 1,992; cpp: 190; java: 116
file content (31 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
os: Visual Studio 2015

platform:
- amd64
- x86

configuration:
- Debug
- Release

# clone directory
clone_folder: c:\build

build_script:
  - echo build_script
  - cd c:\build\msvc
  - if "%configuration%" == "Debug" set DEBUGFLAGS="ECL_DEBUG=1"
  - if "%platform%" == "amd64" set PLATFORMFLAGS="ECL_WIN64=1"
  - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %platform%
  - nmake /f Makefile %DEBUGFLAGS% %PLATFORMFLAGS%
  - nmake /f Makefile install %DEBUGFLAGS% %PLATFORMFLAGS%

#after_build:
#  - cd c:\build\msvc
#  - nmake /f Makefile windows-nsi

#artifacts:
#  - path: ecl.zip
#    name: ECL

deploy: off