Skip to content

Commit

Permalink
Added appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
Optiroc committed Apr 10, 2020
1 parent edd90c6 commit 7830c55
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2016 David Lindecrantz
Copyright (C) 2020 David Lindecrantz

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
40 changes: 40 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: 1.{build}-{branch}
branches:
only:
- master
skip_non_tags: true

image: Visual Studio 2019
before_build:
- ps: >-
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
}
else
{
Update-AppveyorBuild -Version "dev-$($env:APPVEYOR_REPO_COMMIT.substring(0,7))"
}
build_script:
- cmd: >-
mkdir build-win_x64
cd build-win_x64
cmake -DCMAKE_GENERATOR_PLATFORM=x64 ..
cd ..
cmake --build build-win_x64 --config Release
artifacts:
- path: build-win_x64\Release
name: SuperFamicheck-win_x64

0 comments on commit 7830c55

Please sign in to comment.