My first time attempt at CMake and I need some help
CMake /w Ninja & clang++ generates build files but no executable
/CMakeLists.txt
cmake_minimum_required(VERSION 3.17)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
project(Example)
include(find_compiler)
add_subdirectory(src)
src/CMakeLists.txt
add_executable(Example main.cpp)
I'm not sure what to do. Thank you.