de64cce14c
Update issue 62 Status: Feedback Gleen, I slightly modified your patches to better stick with the style of the rest of the project, Can you please confirm that it does not break? PR: Issue 62 Submitted by: glenn.ergeerts
21 lines
642 B
CMake
21 lines
642 B
CMake
# $Id$
|
|
set(EXAMPLES-SOURCES
|
|
mifare-classic-format
|
|
mifare-classic-write-ndef
|
|
mifare-desfire-access
|
|
mifare-desfire-format
|
|
mifare-desfire-info
|
|
mifare-desfire-write-ndef
|
|
mifare-desfire-ev1-configure-ats
|
|
mifare-desfire-ev1-configure-default-key
|
|
mifare-desfire-ev1-configure-random-uid
|
|
)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../libfreefare)
|
|
|
|
# Examples
|
|
foreach(source ${EXAMPLES-SOURCES})
|
|
add_executable(${source} ${source}.c)
|
|
target_link_libraries(${source} freefare)
|
|
install(TARGETS ${source} RUNTIME DESTINATION bin COMPONENT examples)
|
|
endforeach(source)
|