26 lines
678 B
CMake
26 lines
678 B
CMake
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|
|
|
if (POLICY CMP0065)
|
|
# do not export symbols from executables
|
|
# affects compiler checks in project(), so must be set before it
|
|
cmake_policy(SET CMP0065 NEW)
|
|
endif()
|
|
|
|
project(tl-parser LANGUAGES C)
|
|
|
|
set(SOURCES crc32.h crc32.c tlc.c tl-parser.c tl-parser.h tl-parser-tree.h tl-tl.h portable_endian.h)
|
|
|
|
if (WIN32)
|
|
add_definitions("-D_CRT_SECURE_NO_WARNINGS")
|
|
list(APPEND SOURCES wgetopt.c wgetopt.h)
|
|
if (MSVC)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /utf-8 /wd4101 /wd4244 /wd4267")
|
|
endif()
|
|
endif()
|
|
|
|
add_executable(${PROJECT_NAME} ${SOURCES})
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE m)
|
|
endif()
|