aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/CMakeLists.txt
blob: ee5c5ba3ecd2fbabc93d2c17c2a53758f7a9a6ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
find_package(Boost REQUIRED COMPONENTS filesystem program_options)

function(add_util name src)
    add_executable("${name}" ${src})
    target_link_libraries("${name}" PRIVATE pdb_repo)
    target_link_libraries("${name}" PRIVATE Boost::filesystem Boost::program_options)
    install(TARGETS "${name}" RUNTIME DESTINATION bin)
    if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
        install(FILES "$<TARGET_PDB_FILE:${name}>" DESTINATION bin OPTIONAL)
    endif()
endfunction()

add_util(enum_symbols enum_symbols.cpp command_line.hpp pdb_descr.hpp)
add_util(name2addr name2addr.cpp)
add_util(addr2name addr2name.cpp command_line.hpp pdb_descr.hpp)