Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
-
- include $(top_srcdir)/build/autotools/common.am
-
- if BUILD_TEST
- noinst_PROGRAMS = $(testsuite)
-
- TESTS = $(testsuite)
- endif
-
- testsuite = test-base test-math
-
- if LOL_USE_GL
- testsuite += test-entity # FIXME: this should not really depend on GL
- testsuite += test-sys
- endif
-
- if LOL_USE_GDIPLUS
- testsuite += test-image
- else
- if LOL_USE_LIBPNG
- testsuite += test-image
- else
- if LOL_USE_IMLIB2
- testsuite += test-image
- endif
- endif
- endif
-
- test_base_SOURCES = test-common.cpp \
- base/avl_tree.cpp base/array.cpp base/enum.cpp base/map.cpp \
- base/string.cpp base/types.cpp
- test_base_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/tools/lolunit
- test_base_DEPENDENCIES = @LOL_DEPS@
-
- test_math_SOURCES = test-common.cpp \
- math/array2d.cpp math/array3d.cpp math/arraynd.cpp math/box.cpp \
- math/cmplx.cpp math/half.cpp math/interp.cpp math/matrix.cpp \
- math/quat.cpp math/rand.cpp math/real.cpp math/rotation.cpp \
- math/trig.cpp math/vector.cpp math/polynomial.cpp math/noise/simplex.cpp \
- math/bigint.cpp math/sqt.cpp math/numbers.cpp
- test_math_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/tools/lolunit
- test_math_DEPENDENCIES = @LOL_DEPS@
-
- test_sys_SOURCES = test-common.cpp \
- sys/thread.cpp sys/timer.cpp
- test_sys_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/tools/lolunit
- test_sys_DEPENDENCIES = @LOL_DEPS@
-
- test_image_SOURCES = test-common.cpp \
- image/color.cpp image/image.cpp
- test_image_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/tools/lolunit
- test_image_DEPENDENCIES = @LOL_DEPS@
-
- test_entity_SOURCES = test-common.cpp \
- entity/camera.cpp
- test_entity_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/tools/lolunit
- test_entity_DEPENDENCIES = @LOL_DEPS@
-
- EXTRA_DIST += data/gradient.png
|