66 lines
2.2 KiB
CMake
66 lines
2.2 KiB
CMake
#
|
|
# This file is part of the Pico CCID distribution (https://github.com/polhenarejos/pico-ccid).
|
|
# Copyright (c) 2022 Pol Henarejos.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
include(pico_sdk_import.cmake)
|
|
|
|
project(pico_ccid C CXX ASM)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
pico_sdk_init()
|
|
|
|
add_executable(pico_ccid)
|
|
|
|
if (NOT DEFINED USB_VID)
|
|
set(USB_VID 0xFEFF)
|
|
endif()
|
|
add_definitions(-DUSB_VID=${USB_VID})
|
|
if (NOT DEFINED USB_PID)
|
|
set(USB_PID 0xFCFD)
|
|
endif()
|
|
add_definitions(-DUSB_PID=${USB_PID})
|
|
|
|
set_source_files_properties(
|
|
${CMAKE_CURRENT_LIST_DIR}/OpenSC/src/libopensc/ctx.c
|
|
PROPERTIES COMPILE_DEFINITIONS "PACKAGE_VERSION=\"0.22.0\";OPENSC_CONF_PATH=\".\""
|
|
)
|
|
|
|
target_sources(pico_ccid PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}/src/ccid/ccid2040.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/usb/usb_descriptors.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/fs/file.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/fs/flash.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/fs/low_flash.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/rng/random.c
|
|
${CMAKE_CURRENT_LIST_DIR}/src/rng/neug.c
|
|
)
|
|
|
|
target_include_directories(pico_ccid PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}/src/fs
|
|
${CMAKE_CURRENT_LIST_DIR}/src/ccid
|
|
${CMAKE_CURRENT_LIST_DIR}/src/rng
|
|
${CMAKE_CURRENT_LIST_DIR}/src/usb
|
|
)
|
|
|
|
pico_add_extra_outputs(pico_ccid)
|
|
|
|
#target_compile_definitions(pico_ccid PRIVATE MBEDTLS_ECDSA_DETERMINISTIC=1)
|
|
|
|
target_link_libraries(pico_ccid PRIVATE pico_stdlib tinyusb_device tinyusb_board pico_multicore hardware_flash hardware_sync hardware_adc pico_unique_id hardware_rtc)
|