Skip to content

Commit

Permalink
Add AppVeyor build script
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Jun 22, 2019
1 parent c03fcfa commit 74df47d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Snowman
=======

image:https://ci.appveyor.com/api/projects/status/tec5nqkq0r4krxyp?svg=true[image]

image:https://i.imgur.com/F0kpXRM.png[image]

http://derevenets.com/[Snowman] is a native code to C/C++ decompiler, supporting x86, AMD64, and ARM architectures.
Expand Down
31 changes: 31 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: '{build}'

image: Visual Studio 2013

environment:
MSBUILD_FLAGS: /verbosity:minimal /maxcpucount
BOOST_INCLUDEDIR: C:\Libraries\boost\boost
BOOST_ROOT: C:\Libraries\boost
Boost_DIR: C:\Libraries\boost
matrix:
- CMAKE_GENERATOR: "Visual Studio 12 2013"
QT5: C:\Qt\5.6\msvc2013
- CMAKE_GENERATOR: "Visual Studio 12 2013 Win64"
QT5: C:\Qt\5.6\msvc2013_64

matrix:
fast_finish: true

install:
- curl -O -L https://github.com/x64dbg/snowman/releases/download/build-files/pluginsdk.zip 1>nul
- 7z x -y -o. pluginsdk.zip 1>nul

before_build:
- set Path=%QT5%\bin;%Path%
- cmake -Hsrc -Bbuild -G "%CMAKE_GENERATOR%" "-DCMAKE_PREFIX_PATH=%QT5%" "-DX64DBG_SDK_PATH=pluginsdk" -DNC_QT5=ON

build_script:
- cmake --build build --config Release -- %MSBUILD_FLAGS%

artifacts:
- path: build/x64dbg-module/Release/snowman.dp*

0 comments on commit 74df47d

Please sign in to comment.