diff --git a/dump-prog/CMakeLists.txt b/dump-prog/CMakeLists.txt new file mode 100644 index 0000000..7b2c4ee --- /dev/null +++ b/dump-prog/CMakeLists.txt @@ -0,0 +1,7 @@ +include_directories(${pe-parse_SOURCE_DIR/parser-library}) + +add_executable( dump-prog + dump.cpp ) + +target_link_libraries( dump-prog + parser-library ) diff --git a/parser-library/CMakeLists.txt b/parser-library/CMakeLists.txt new file mode 100644 index 0000000..d3081ef --- /dev/null +++ b/parser-library/CMakeLists.txt @@ -0,0 +1,2 @@ +add_library(parser-library + parse.c) diff --git a/parser-library/parse.c b/parser-library/parse.c new file mode 100644 index 0000000..e69de29 diff --git a/parser-library/parse.h b/parser-library/parse.h new file mode 100644 index 0000000..e69de29