VulkanInfiniteProceduralTerrain icon indicating copy to clipboard operation
VulkanInfiniteProceduralTerrain copied to clipboard

external projects don't yet have an automated way to populate them.

Open robertosfield opened this issue 1 year ago • 6 comments

When I run cmake . in the VulkanInfiniteProceduralTerrain directory on my Kubuntu 22.04 system I get an error:

CMake Error at CMakeLists.txt:118 (add_subdirectory): add_subdirectory given source "external" which is not an existing directory.

I looked for them to be pulled in as submodules so tried a:

git submodule init git submodule update

But this didn't pull anything in. I can't see any entry for modules in the .git setup so I presume this simply hasn't been setup/checked in yet.

--

The full CMake output is:

~/3rdParty/VulkanInfiniteProceduralTerrain$ cmake . -- The C compiler identification is GNU 11.2.0 -- The CXX compiler identification is GNU 11.2.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Using module to find Vulkan -- Found Vulkan: /home/robert/3rdParty/VulkanSDK/1.3.224.0/x86_64/lib/libvulkan.so
-- Looking for pthread.h -- Looking for pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -- Found Threads: TRUE
-- Found PkgConfig: /bin/pkg-config (found version "0.29.2") -- Checking for module 'xcb' -- Found xcb, version 1.14 -- /home/robert/3rdParty/VulkanSDK/1.3.224.0/x86_64/lib/libvulkan.so CMake Error at CMakeLists.txt:118 (add_subdirectory): add_subdirectory given source "external" which is not an existing directory.

-- Configuring incomplete, errors occurred!

robertosfield avatar Sep 04 '22 14:09 robertosfield