commit d3b2d3345563ea7204fd263371a205087ddeb95e Author: Andrew Date: Wed Jul 24 16:33:35 2013 -0400 begin somewhere diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..bd34c6d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required (VERSION 2.8) + +project (pe-parse) + +#lets use boost for smart pointers +set(BOOST_USE_MULTITHREADED ON) +if(WIN32) + set(Boost_USE_STATIC_LIBS ON) +endif(WIN32) +find_package(Boost COMPONENTS thread system filesystem program_options date_time regex REQUIRED) +find_package(Threads REQUIRED) +find_package(Protobuf REQUIRED) + +add_subdirectory(parser-library) +add_subdirectory(dump-prog)