| # ---[ Get non-tests | |
| file(GLOB tmp *.cc) | |
| set(Caffe2_CPU_SRCS ${Caffe2_CPU_SRCS} ${tmp}) | |
| # exclude test files | |
| file(GLOB tmp *_test.cc) | |
| exclude(Caffe2_CPU_SRCS "${Caffe2_CPU_SRCS}" ${tmp}) | |
| # ---[ Get tests | |
| file(GLOB tmp *_test.cc) | |
| set(Caffe2_CPU_TEST_SRCS ${Caffe2_CPU_TEST_SRCS} ${tmp}) | |
| # ---[ Send the lists to the parent scope. | |
| set(Caffe2_CPU_SRCS ${Caffe2_CPU_SRCS} PARENT_SCOPE) | |
| set(Caffe2_CPU_TEST_SRCS ${Caffe2_CPU_TEST_SRCS} PARENT_SCOPE) |