adds elfio test utility

This commit is contained in:
2024-09-23 09:29:08 +02:00
parent a8f56b6e27
commit f6be8ec006
2 changed files with 42 additions and 0 deletions

View File

@ -262,3 +262,9 @@ if(TARGET scc-sysc)
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} # headers
)
endif()
project(elfio-test)
find_package(Boost COMPONENTS program_options thread REQUIRED)
add_executable(${PROJECT_NAME} src/elfio.cpp)
target_link_libraries(${PROJECT_NAME} PUBLIC elfio::elfio)