skip to Main Content

Visual Studio Code – VSCode can't find include path

I've got a simple CMake educational project sturctured like this: The root CMakeLists.txt is like that: cmake_minimum_required(VERSION 3.24.2) project(SIMPLE_ENGINE CXX) add_subdirectory(engine) add_subdirectory(game) game: cmake_minimum_required(VERSION 3.24.2) project(GAME CXX) add_executable( game src/main.cpp ) target_link_libraries( game engine ) set_property(TARGET game PROPERTY CXX_STANDARD 20)…

VIEW QUESTION
Back To Top
Search