colobot/lib/wingetopt/CMakeLists.txt

8 lines
180 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
2015-04-27 16:12:31 +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