I think you want to try for absolute paths:
file (GLOB_RECURSE ards ./ArduinoCore/src/*.cpp ./ArduinoCore/src/*.c)
file (GLOB_RECURSE apps ./SensorUnit/*.cpp ./SensorUnit/*.c)

relative paths from those directories:
file (GLOB_RECURSE ards RELATIVE  ./ArduinoCore/src/
./ArduinoCore/src/*.cpp ./ArduinoCore/src/*.c)
file (GLOB_RECURSE apps RELATIVE ./SensorUnit/ ./SensorUnit/*.cpp
./SensorUnit/*.c)



On Wed, Jul 25, 2018 at 6:47 PM, Michael Hennebry <
michael.henne...@rivieranexus.com> wrote:

> Emphasis on curse.
>
> from CMakeLists.txt:
>
> file (GLOB_RECURSE ards ./ArduinoCore/src *.cpp *.c)
> file (GLOB_RECURSE apps ./SensorUnit *.cpp *.c)
>
> message("apps:;${apps};:apps")
> message("ards:;${ards};:ards")
>
> Both lists have ArduinoCore and SensorUnit sources.
> They both have precisely 57 entries.
> They both have three entries from sb-build.
>
> What is going on?
>
> From the siblings' parent:
> $ ls -F
> ArduinoCore/    SensorUnit/              generic-gcc-avr.cmake
> CMakeLists.txt  from-build-directory.sh  sb-build/
>
> I tried RELATIVE.
> I tried replacing the dot with ${CMAKE_SOURCE_DIR}.
> All to no avail.
>
> I'm stumped.
> --
>
> Powered by www.kitware.com
>
> Please keep messages on-topic and check the CMake FAQ at:
> http://www.cmake.org/Wiki/CMake_FAQ
>
> Kitware offers various services to support the CMake community. For more
> information on each offering, please visit:
>
> CMake Support: http://cmake.org/cmake/help/support.html
> CMake Consulting: http://cmake.org/cmake/help/consulting.html
> CMake Training Courses: http://cmake.org/cmake/help/training.html
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Follow this link to subscribe/unsubscribe:
> https://cmake.org/mailman/listinfo/cmake
>
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake

Reply via email to