Hello all, I’m new to the forums, so apologies if I’m missing something, but here’s my issue. I’m able to generate a build directory using cmake, but after running Make (and it successfully executing) I’m finding that the expected collaterals don’t exist.
I run
cmake -S . -B build/
and get the following output:
-- The C compiler identification is GNU 14.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Including Wayland support
-- Including X11 support
-- Looking for memfd_create
-- Looking for memfd_create - found
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.1")
-- Checking for modules 'wayland-client>=0.2.7;wayland-cursor>=0.2.7;wayland-egl>=0.2.7;xkbcommon>=0.5.0'
-- Found wayland-client, version 1.23.0
-- Found wayland-cursor, version 1.23.0
-- Found wayland-egl, version 18.1.0
-- Found xkbcommon, version 1.6.0
-- Found X11: /usr/include
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Found Doxygen: /usr/bin/doxygen (found version "1.9.8") found components: doxygen
-- Configuring done (1.3s)
-- Generating done (0.1s)
-- Build files have been written to: BUILD_DIR
I then enter the build directory and run make
cd build/
make
Make then seems to run successfully, I’ll skip the output here so as to not clutter the post, but can share it if requested.
This step generates a ton of *.c.o.d
files, but I don’t see the actual library or any of the expected header files. Any help would be greatly appreciated