#**************************************************************************
#    Lightspark, a free flash player implementation
#
#    Copyright (C) 2024  mr b0nk 500 (b0nk@b0nk.xyz)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Lesser General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU Lesser General Public License for more details.
#
#   You should have received a copy of the GNU Lesser General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#**************************************************************************

CMAKE_MINIMUM_REQUIRED(VERSION 2.6...3.19)

SET(PARENT_DIR ${PROJECT_SOURCE_DIR})

# Name & Version
PROJECT(LIBTESTPP)
SET(LIBTESTPP_MAJOR_VERSION "0")
SET(LIBTESTPP_MINOR_VERSION "1")
SET(LIBTESTPP_PATCH_VERSION "0")

SET(LIBTESTPP_VERSION "${LIBTESTPP_MAJOR_VERSION}.${LIBTESTPP_MINOR_VERSION}.${LIBTESTPP_PATCH_VERSION}")

CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/include/version.h.in" "${CMAKE_CURRENT_BINARY_DIR}/version.h" @ONLY)

ADD_SUBDIRECTORY(src)
