mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-27 04:44:31 +00:00
17 lines
416 B
CMake
17 lines
416 B
CMake
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)
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
add_subdirectory(parser-library)
|
|
add_subdirectory(dump-prog)
|