1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-15 04:32:21 +00:00
ton/third-party/wingetopt/CMakeLists.txt

8 lines
245 B
Text
Raw Normal View History

2019-09-07 10:03:22 +00:00
PROJECT(wingetopt)
cmake_minimum_required(VERSION 2.8)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_library(wingetopt src/getopt.c src/getopt.h)
target_include_directories(wingetopt PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>)
2019-09-07 10:03:22 +00:00