Skip to content
Snippets Groups Projects

Use hyphens in cmake instead of underscores when appropriate

Merged Vladimir Onoprienko requested to merge cmake-hyphens into main
+ 1
1
cmake_minimum_required(VERSION 3.14)
project(exple_cmake_build CXX)
option(DOWNLOAD_DEPS "Enable automatic download of dependencies" ON)
option(DOWNLOAD_DEPS ON)
# download dependency 'explelibx-common' or find it locally
if (DOWNLOAD_DEPS)
Loading