damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

CMakeLists.txt (259B)


      1 include_directories (
      2     "${PROJECT_SOURCE_DIR}/include"
      3 )
      4 
      5 add_library(flatccrt
      6     builder.c
      7     emitter.c
      8     refmap.c
      9     verifier.c
     10     json_parser.c
     11     json_printer.c
     12 )
     13 
     14 if (FLATCC_INSTALL)
     15     install(TARGETS flatccrt DESTINATION ${lib_dir})
     16 endif()