Minor change (move location of GLOB_RECURSE defition in src/CMakeLists.txt)

This commit is contained in:
David Capello 2010-09-14 19:52:02 -03:00
parent a2696555b0
commit 955ec830cc

View File

@ -33,9 +33,6 @@ include_directories(
${TINYXML_DIR}
${VACA_DIR}/include)
# Files
file(GLOB_RECURSE tests *_unittest.cpp)
######################################################################
# aseprite library
@ -280,6 +277,8 @@ target_link_libraries(aseprite ${aseprite-library} ${all_libs})
######################################################################
# Unit tests
file(GLOB_RECURSE tests *_unittest.cpp)
foreach(testsourcefile ${tests})
get_filename_component(testname ${testsourcefile} NAME_WE)