# -----------------------------------------------------------------------------
# CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-17 Bradley M. Bell
#
# CppAD is distributed under multiple licenses. This distribution is under
# the terms of the
#                     GNU General Public License Version 3.
#
# A copy of this license is included in the COPYING file of this distribution.
# Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
# -----------------------------------------------------------------------------
# Build the speed/cppad directory tests
# Inherit build type from ../CMakeList.txt

# add_executable(<name> [WIN32] [MACOSX_BUNDLE] [EXCLUDE_FROM_ALL]
#                 source1 source2 ... sourceN
# )
# We do not add ../src/speed_src library to avoid undefined externals.
# Instead we build our own copy of ../src/microsoft_timer.cpp.
SET(source_list example.cpp
	det_by_lu.cpp
	det_by_minor.cpp
	det_of_minor.cpp
	elapsed_seconds.cpp
	mat_sum_sq.cpp
	ode_evaluate.cpp
	sparse_hes_fun.cpp
	sparse_jac_fun.cpp
	speed_test.cpp
	time_test.cpp
	"../src/microsoft_timer.cpp"
)
set_compile_flags( speed_example "${cppad_debug_which}" "${source_list}" )
#
ADD_EXECUTABLE( speed_example EXCLUDE_FROM_ALL ${source_list} )

# Add the check_speed_example target
ADD_CUSTOM_TARGET(check_speed_example
	speed_example
	DEPENDS speed_example speed_src
)
MESSAGE(STATUS "make check_speed_example: available")

# Change check depends in parent environment
add_to_list(check_speed_depends check_speed_example)
SET(check_speed_depends "${check_speed_depends}" PARENT_SCOPE)
