#**************************************************************************
#    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/>.
#**************************************************************************

SET(LIBTESTPP_SOURCES
	args.cpp
	color.cpp
	printer.cpp
	test_runner.cpp
	../../src/utils/args_parser.cpp
	../../src/utils/option_parser.cpp
)

ADD_LIBRARY(test++ SHARED ${LIBTESTPP_SOURCES})
SET(CMAKE_CXX_FLAGS "-Wall -pipe -std=c++17")

TARGET_INCLUDE_DIRECTORIES(
	test++
	PUBLIC ${PARENT_DIR}/3rdparty/include
	PUBLIC ${PARENT_DIR}/3rdparty/include/lightspark
	PUBLIC ${PARENT_DIR}/src
	PRIVATE ${PROJECT_SOURCE_DIR}/include
	PRIVATE ${PROJECT_BINARY_DIR}
)

TARGET_LINK_LIBRARIES(test++ spark)
