This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
hackfridge/terminal/CMakeLists.txt

10 lines
377 B
CMake

project(hf-terminal)
add_executable(hf-terminal main.c tts.c base64.c ldap.c nfc.c network.c barcode.c)
add_executable(hash-one hash-one.c ldap.c)
set(CMAKE_C_FLAGS "-std=c99 -g -I/usr/local/include -L/usr/local/lib")
add_executable(test-barcode test-barcode.c barcode.c)
target_link_libraries(hf-terminal nfc m ldap crypto ssl)
target_link_libraries(hash-one m crypto ldap)