2020-07-04 14:42:43 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2015-04-27 16:12:31 +00:00
|
|
|
|
2020-07-04 14:42:43 +00:00
|
|
|
add_library(wingetopt STATIC src/getopt.c)
|
|
|
|
target_include_directories(wingetopt
|
|
|
|
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
|
|
|
|
)
|
2015-04-27 16:12:31 +00:00
|
|
|
|