pe-parse/CMakeLists.txt

11 lines
177 B
CMake
Raw Normal View History

2013-07-24 16:33:35 -04:00
cmake_minimum_required (VERSION 2.8)
project (pe-parse)
2017-04-17 16:32:28 +02:00
if(UNIX)
set(CMAKE_CXX_FLAGS "-std=c++0x")
endif(UNIX)
2013-07-24 16:33:35 -04:00
add_subdirectory(parser-library)
add_subdirectory(dump-prog)