• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 Tarmo Pikaro
2# Distributed under the Boost Software License, Version 1.0.
3# See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
4
5cmake_minimum_required( VERSION 3.5 )
6project( BoostDateTime LANGUAGES CXX)
7
8add_library( boost_date_time
9    src/gregorian/greg_month.cpp
10)
11add_library( Boost::date_time ALIAS boost_date_time )
12
13target_include_directories( boost_date_time PUBLIC include )
14
15target_link_libraries( boost_date_time
16    PUBLIC
17        Boost::config
18)
19
20
21
22