mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-05-02 23:29:32 +00:00
- CMake: Refactor, added more warnings. - Refactor - Added Windows support - Added a missing include file for linux. - Do not set CMAKE_CXX_STANDARD on Windows - Always initialize the stat struct - CMake: update the required version, request C++11, disable GNU extensions - CMake: Add default switch cases, fix GCC warnings. - Prefer assignment from an empty object when initializing
7 lines
229 B
CMake
7 lines
229 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(dump-prog)
|
|
|
|
add_executable(${PROJECT_NAME} dump.cpp)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE pe-parser-library)
|
|
target_compile_options(${PROJECT_NAME} PRIVATE ${GLOBAL_CXXFLAGS})
|