4
0
mirror of https://github.com/QuasarApp/pe-parse.git synced 2025-05-14 20:19:32 +00:00
William Woodruff 79a2333a8b
treewide: CI, cmake fixes ()
Massages the pe-parse build into a format that's more accomodating
for vcpkg, in preparation for imminent packaging.
2020-04-24 13:48:46 -04:00

9 lines
300 B
CMake

cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(dump-pe)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE pe-parser-library)
target_compile_options(${PROJECT_NAME} PRIVATE ${GLOBAL_CXXFLAGS})
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION "bin")