mirror of
https://github.com/starr-dusT/tzdb_to_nx
synced 2024-03-05 21:18:52 -08:00
13 lines
231 B
CMake
13 lines
231 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(tzdb2nx VERSION 1.0)
|
|
|
|
set(TZDB_VERSION "$ENV{TZDB_VERSION}")
|
|
if ("${TZDB_VERSION}" STREQUAL "")
|
|
set(TZDB_VERSION "2022c")
|
|
endif()
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_subdirectory(src)
|