Skip to content

Commit

Permalink
introduce the various enlightenments necessary for working with stati…
Browse files Browse the repository at this point in the history
…cally instrumented binaries.
  • Loading branch information
Axel '0vercl0k' Souchet committed Aug 12, 2017
1 parent 520f4ce commit 8aa1e13
Show file tree
Hide file tree
Showing 19 changed files with 1,744 additions and 494 deletions.
16 changes: 15 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ add_executable(test
test.cpp
)

if(NOT "${CMAKE_GENERATOR}" MATCHES "(Win64)")

project(test_static)

add_executable(test_static
test_static.cpp
afl-staticinstr.c
)

target_link_libraries(test_static "psapi.lib")

set_target_properties(test_static PROPERTIES COMPILE_FLAGS "/EHsc")
set_target_properties(test_static PROPERTIES LINK_FLAGS "/PROFILE")

endif()

project(test_gdiplus)

Expand All @@ -22,7 +37,6 @@ add_executable(afl-showmap
afl-showmap.c
)


project(afl-fuzz)

add_executable(afl-fuzz
Expand Down
301 changes: 0 additions & 301 deletions README

This file was deleted.

Loading

0 comments on commit 8aa1e13

Please sign in to comment.