Skip to content

Commit

Permalink
[windows] [build] Fix (maybe) #279
Browse files Browse the repository at this point in the history
  • Loading branch information
adriweb committed Sep 1, 2018
1 parent 032bea4 commit 11df959
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions appveyor.yml
Expand Up @@ -41,12 +41,11 @@ install:

build_script:
# Figure out version to set - if tag is defined, use that.
# If not, set it to a space (which would evaluate to empty in
# our QMake command).
# If not, set it to a space (which would evaluate to empty in our QMake command).
#
# We remove the first character of CEMU_VERSION below to correctly
# set our version for the build.
- cmd: if defined APPVEYOR_REPO_TAG_NAME (set CEMU_VERSION=%APPVEYOR_REPO_TAG_NAME% & echo Using tagged version %CEMU_VERSION%) ELSE (set "CEMU_VERSION= " & echo No version defined, using empty version '%CEMU_VERSION%' and allowing QMake to set default for dev.)
# We remove the first character (dummy 'z' or space) of
# CEMU_VERSION below to correctly set our version for the build.
- cmd: if defined APPVEYOR_REPO_TAG_NAME (set CEMU_VERSION=z%APPVEYOR_REPO_TAG_NAME% & echo Using tagged version %CEMU_VERSION%) ELSE (set "CEMU_VERSION= " & echo No version defined, using empty version '%CEMU_VERSION%' and allowing QMake to set default for dev.)

- cmd: set LIBPNG_APNG_INCLUDE=C:\libpng-apng-1.6.34\include

Expand Down

0 comments on commit 11df959

Please sign in to comment.