CMakeLists.txt 217 B

123456789
  1. add_library(getopt
  2. getopt.c
  3. getopt.h
  4. )
  5. create_target_directory_groups(getopt)
  6. target_compile_definitions(getopt PUBLIC STATIC_GETOPT)
  7. target_include_directories(getopt INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})