We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55e38ad commit 40d20acCopy full SHA for 40d20ac
CMakeLists.txt
@@ -67,6 +67,12 @@ include(cmake/build.cmake)
67
68
file(GLOB TEST_SRC_FILES ${PROJECT_SOURCE_DIR}/test/*.cpp
69
${PROJECT_SOURCE_DIR}/test/ops/*.cpp)
70
+# 排除已unmatch开头的文件
71
+file(GLOB UNMATCH_FILES ${PROJECT_SOURCE_DIR}/test/unmatch*.cpp
72
+ ${PROJECT_SOURCE_DIR}/test/ops/unmatch*.cpp)
73
+
74
+list(REMOVE_ITEM TEST_SRC_FILES ${UNMATCH_FILES})
75
76
file(GLOB_RECURSE TEST_BASE_FILES ${PROJECT_SOURCE_DIR}/src/*.cpp)
77
set(PADDLE_TARGET_FOLDER ${CMAKE_BINARY_DIR}/paddle)
78
test/DeviceTest.cpp test/unmatch_DeviceTest.cpptest/DeviceTest.cpp renamed to test/unmatch_DeviceTest.cpp
0 commit comments