mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-06-07 04:31:42 +00:00
961e59b5d1
This reverts commit aaacc75e9f.
12 lines
643 B
CMake
12 lines
643 B
CMake
# This is manually re-creating the contents of id48/src/CMakeLists.txt
|
|
# and thus must be manually kept in sync with updates to id48/src.
|
|
add_library(pm3rrg_rdv4_id48 STATIC
|
|
id48/src/id48_data.c
|
|
id48/src/id48_generator.c
|
|
id48/src/id48_recover.c
|
|
)
|
|
target_compile_options( pm3rrg_rdv4_id48 PRIVATE -Wpedantic -Wall -Werror -O3 -Wno-unknown-pragmas -Wno-inline -Wno-unused-function -DID48_NO_STDIO)
|
|
target_include_directories(pm3rrg_rdv4_id48 PRIVATE id48/public)
|
|
target_include_directories(pm3rrg_rdv4_id48 INTERFACE id48/public)
|
|
set_property(TARGET pm3rrg_rdv4_id48 PROPERTY POSITION_INDEPENDENT_CODE ON)
|