4
0
mirror of https://github.com/QuasarApp/pe-parse.git synced 2025-05-01 22:59:33 +00:00

9 lines
291 B
CMake
Raw Permalink Normal View History

2020-03-27 11:50:36 -04:00
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(dump-pe)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE pe-parse)
target_compile_options(${PROJECT_NAME} PRIVATE ${GLOBAL_CXXFLAGS})
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION "bin")