mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-05-14 20:19:32 +00:00
Massages the pe-parse build into a format that's more accomodating for vcpkg, in preparation for imminent packaging.
9 lines
300 B
CMake
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")
|