mirror of
https://github.com/danog/ton.git
synced 2024-12-02 09:28:02 +01:00
28df74178c
1. updated tonlib 2. fixed bug in state download
8 lines
245 B
CMake
8 lines
245 B
CMake
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>)
|
|
|