You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# This file was generated automatically by cmkr.
|
|
|
|
|
|
|
|
# Regenerate CMakeLists.txt file when necessary
|
|
|
|
include(cmkr.cmake OPTIONAL RESULT_VARIABLE CMKR_INCLUDE_RESULT)
|
|
|
|
|
|
|
|
if(CMKR_INCLUDE_RESULT)
|
|
|
|
cmkr()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
|
|
|
set(example_PROJECT_VERSION 0.1.0)
|
|
|
|
project(example VERSION ${example_PROJECT_VERSION})
|
|
|
|
|
|
|
|
set(EXAMPLE_SOURCES
|
|
|
|
src/example.cpp
|
|
|
|
cmake.toml
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(example ${EXAMPLE_SOURCES})
|
|
|
|
|
|
|
|
source_group(TREE ${PROJECT_SOURCE_DIR} FILES ${EXAMPLE_SOURCES})
|
|
|
|
|
|
|
|
|
|
|
|
|