cc7d131d95
Some checks failed
linux-x64-gcc / linux-gcc (Release) (push) Failing after 37s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 48s
linux-arm-gcc / linux-gcc-armhf (push) Failing after 1m6s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1m23s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Failing after 1m42s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1m47s
25 lines
512 B
CMake
25 lines
512 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(
|
|
elf
|
|
VERSION 0.3.0
|
|
LANGUAGES C CXX)
|
|
|
|
add_library(
|
|
dwarf STATIC
|
|
dwarf/abbrev.cc
|
|
dwarf/attrs.cc
|
|
dwarf/cursor.cc
|
|
dwarf/die.cc
|
|
dwarf/dwarf.cc
|
|
dwarf/elf.cc
|
|
dwarf/expr.cc
|
|
dwarf/line.cc
|
|
dwarf/rangelist.cc
|
|
dwarf/value.cc
|
|
dwarf/to_string.cc)
|
|
target_include_directories(dwarf PUBLIC dwarf/)
|
|
|
|
add_library(elf STATIC elf/elf.cc elf/to_string.cc elf/mmap_loader.cc)
|
|
target_include_directories(elf PUBLIC elf/)
|
|
target_link_libraries(elf PUBLIC dwarf)
|