Re: [CMake] cmake doesn't run all tests

2019-05-21 Thread hex
hello Eric, Some of my recent changes prevented my function to add a build target. It was building either one or the other but not both. Therefore, half of the tests where missing. You are right it is working correctly now. thank you for your patience. This should work at least it "works-fo

Re: [CMake] cmake doesn't run all tests

2019-05-21 Thread Eric Noulard
Le mar. 21 mai 2019 à 11:45, hex a écrit : > hello, > > I have two modules in my CMake project: > > *root* > *├── foo* > *│ ├── CMakeLists.txt* > *│ ├── src* > *│ │ └── foo.c* > *│ └── tests* > *│ ├── foo_unit_test.c* > *│ └── CMakeLists.txt* > *├── CMakeLists.txt* > *└── mo

[CMake] cmake doesn't run all tests

2019-05-21 Thread hex
hello, I have two modules in my CMake project: /root// //├── foo// //│   ├── CMakeLists.txt// //│   ├── src// //│   │   └── foo.c// //│   └── tests// //│   ├── foo_unit_test.c// //│   └── CMakeLists.txt// //├── CMakeLists.txt// //└── moo// //    ├── CMakeLists.txt// //    ├── src// //