-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
96 changed files
with
21,634 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(Pe_x86_parser) | ||
set(CMAKE_CXX_STANDARD 23) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
|
||
include_directories("C:/Program Files/Microsoft Visual Studio/2022/Professional/DIA SDK/include") | ||
|
||
add_executable(Pe_x86_parser | ||
"src/main.cpp" | ||
"src/parser.cpp" | ||
"src/exp.hpp" | ||
"src/x32/header_pe.cpp" | ||
"src/x64/header_pe.cpp" | ||
"src/section_pe.cpp" | ||
"src/symbols.cpp" | ||
"src/import_table.cpp" | ||
"src/export_table.cpp" | ||
) | ||
|
||
target_link_libraries(Pe_x86_parser PRIVATE dbghelp) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "x64-Debug", | ||
"generator": "MinGW Makefiles", | ||
"configurationType": "Debug", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64" ], | ||
"variables": [ | ||
{ | ||
"name": "CMAKE_MAKE_PROGRAM", | ||
"value": "C:/msys64/mingw64/bin/mingw32-make.exe", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"name": "CMAKE_C_COMPILER", | ||
"value": "C:/msys64/mingw64/bin/gcc.exe", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"name": "CMAKE_CXX_COMPILER", | ||
"value": "C:/msys64/mingw64/bin/g++.exe", | ||
"type": "STRING" | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.