pe-parse/CMakeLists.txt

17 lines
416 B
CMake
Raw Normal View History

2013-07-24 16:33:35 -04:00
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)
2013-07-24 17:32:23 -04:00
include_directories(${Boost_INCLUDE_DIRS})
2013-07-24 16:33:35 -04:00
add_subdirectory(parser-library)
add_subdirectory(dump-prog)