tzdb_to_nx/CMakeLists.txt
lat9nq 1e82342033 CMake: Find and require intl
It's not guaranteed for Apple systems to have this library installed, apparently, so check for it.
2024-01-09 17:22:53 -05:00

13 lines
198 B
CMake

cmake_minimum_required(VERSION 3.10)
project(tzdb2nx VERSION 1.0)
set(CMAKE_CXX_STANDARD 20)
if (APPLE)
find_package(Intl REQUIRED)
endif()
add_subdirectory(externals)
add_subdirectory(src)