Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
richkmeli committed Sep 12, 2017
2 parents a59234a + 6e52164 commit f687d98
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Richkware

[![Build status](https://ci.appveyor.com/api/projects/status/1tn6vedeaq0v27ra?svg=true)](https://ci.appveyor.com/project/richkmeli/richkware)

Framework for building Windows malware, written in C++.

## Description
Expand Down
35 changes: 35 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 1.0.{build}
os: Visual Studio 2013

environment:
CTEST_OUTPUT_ON_FAILURE: 1
TargetPath: /bin/Richkware.exe
matrix:
- Compiler: mingw
Build: static
- Compiler: mingw
Build: shared

cache:
- C:\mingw64

install:
- ps: |
if ($env:Compiler -eq "mingw" -AND -Not (Test-Path "C:\mingw64")) {
# Install MinGW.
$file = "x86_64-4.9.2-release-win32-seh-rt_v4-rev3.7z"
wget https://bintray.com/artifact/download/drewwells/generic/$file -OutFile $file
&7z x -oC:\ $file > $null
}
- set PATH=C:\mingw64\bin;%PATH%
- set CC=gcc

build_script:
- ps: |
if ($env:Compiler -eq "mingw") {
mingw32-make
}
artifacts:
- path: /bin/
name: Richkware.exe
Binary file modified doc/EN/Report.pdf
Binary file not shown.

0 comments on commit f687d98

Please sign in to comment.