Skip to content

Commit 2fd654c

Browse files
committed
[NOBIN] Disable testing by default, enable from commandline.
1 parent b0def70 commit 2fd654c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ build_script:
2727
- mkdir build
2828
- cd build
2929
- if [%env_arch%]==[x64] (
30-
cmake .. -A x64 )
30+
cmake .. -A x64 -DPE2SHC_BUILD_TESTING=ON )
3131
- if [%env_arch%]==[x86] (
32-
cmake .. )
32+
cmake .. -DPE2SHC_BUILD_TESTING=ON )
3333
- cmake --build . --target install
3434
- ctest -V
3535
- cd ..

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required ( VERSION 2.8 )
33
# replace "peconv_project" by your own project name:
44
project ( pe_to_shellcode )
55

6-
option (PE2SHC_BUILD_TESTING "enable testing" ON)
6+
option (PE2SHC_BUILD_TESTING "enable testing" OFF)
77

88
# libs
99
# modules:

0 commit comments

Comments
 (0)