Skip to content

Commit d62d7cc

Browse files
Merge pull request #9 from c3rb3ru5d3d53c/v1.1.0
v1.1.0
2 parents 8405b42 + 5b5a068 commit d62d7cc

File tree

220 files changed

+18287
-1269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+18287
-1269
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.zip filter=lfs diff=lfs merge=lfs -text
2+
*.pdf filter=lfs diff=lfs merge=lfs -text
3+
*.png filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ samples/**
44
dump.bin
55
*.yara
66
*.traits
7+
dump.json

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "docs/theme"]
2+
path = docs/theme
3+
url = https://github.com/jothepro/doxygen-awesome-css.git

CMakeLists.txt

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
1-
cmake_minimum_required(VERSION 3.16.3)
1+
cmake_minimum_required(VERSION 3.5)
22

33
project(binlex)
44

5-
add_executable(${PROJECT_NAME} main.cpp)
5+
set(SOURCES_BINLEX
6+
src/binlex.cpp
7+
src/args.cpp
8+
src/raw.cpp
9+
src/common.cpp
10+
src/blelf.cpp
11+
src/pe.cpp
12+
src/decompiler.cpp
13+
src/decompiler_rev.cpp
14+
)
615

7-
target_link_libraries(${PROJECT_NAME} -lcapstone)
16+
add_executable(binlex ${SOURCES_BINLEX})
17+
18+
target_link_libraries(binlex -lcapstone -lcrypto -lm)
19+
20+
target_include_directories(binlex
21+
PRIVATE
22+
${PROJECT_SOURCE_DIR}/include
23+
)
24+
25+
project(blyara)
26+
27+
set(SOURCES_BLYARA
28+
src/blyara.cpp
29+
)
30+
31+
add_executable(blyara ${SOURCES_BLYARA})
32+
33+
target_link_libraries(blyara -lcapstone -lcrypto -lm)
34+
35+
target_include_directories(blyara
36+
PRIVATE
37+
${PROJECT_SOURCE_DIR}/include
38+
)

0 commit comments

Comments
 (0)