parent
7b7b260379
commit
8f393d967d
@ -1,27 +1,44 @@
|
|||||||
# This file was generated automatically by cmkr.
|
# This file was generated automatically by cmkr.
|
||||||
|
|
||||||
# Regenerate CMakeLists.txt file when necessary
|
cmake_minimum_required(VERSION 3.15)
|
||||||
include(cmkr.cmake OPTIONAL RESULT_VARIABLE CMKR_INCLUDE_RESULT)
|
|
||||||
|
# Regenerate CMakeLists.txt automatically in the root project
|
||||||
|
set(CMKR_ROOT_PROJECT OFF)
|
||||||
|
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
|
||||||
|
set(CMKR_ROOT_PROJECT ON)
|
||||||
|
|
||||||
|
# Bootstrap cmkr
|
||||||
|
include(cmkr.cmake OPTIONAL RESULT_VARIABLE CMKR_INCLUDE_RESULT)
|
||||||
if(CMKR_INCLUDE_RESULT)
|
if(CMKR_INCLUDE_RESULT)
|
||||||
cmkr()
|
cmkr()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 3.15)
|
# Enable folder support
|
||||||
|
|
||||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(example_PROJECT_VERSION 0.1.0)
|
# Create a configure-time dependency on cmake.toml to improve IDE support
|
||||||
project(example VERSION ${example_PROJECT_VERSION})
|
if(CMKR_ROOT_PROJECT)
|
||||||
|
configure_file(cmake.toml cmake.toml COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(EXAMPLE_SOURCES
|
project(example
|
||||||
src/example.cpp
|
VERSION
|
||||||
cmake.toml
|
0.1.0
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable(example ${EXAMPLE_SOURCES})
|
# Target example
|
||||||
|
set(example_SOURCES
|
||||||
|
"src/example.cpp"
|
||||||
|
cmake.toml
|
||||||
|
)
|
||||||
|
|
||||||
source_group(TREE ${PROJECT_SOURCE_DIR} FILES ${EXAMPLE_SOURCES})
|
add_executable(example ${example_SOURCES})
|
||||||
|
|
||||||
|
get_directory_property(CMKR_VS_STARTUP_PROJECT DIRECTORY ${PROJECT_SOURCE_DIR} DEFINITION VS_STARTUP_PROJECT)
|
||||||
|
if(NOT CMKR_VS_STARTUP_PROJECT)
|
||||||
|
set_property(DIRECTORY ${PROJECT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT example)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${example_SOURCES})
|
||||||
|
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
# This is a minimal example project used for testing the cmkr bootstrapping process
|
# This is a minimal example project used for testing the cmkr bootstrapping process
|
||||||
|
|
||||||
[cmake]
|
[cmake]
|
||||||
minimum = "3.15"
|
version = "3.15"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "example"
|
name = "example"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[[target]]
|
[target.example]
|
||||||
name = "example"
|
|
||||||
type = "executable"
|
type = "executable"
|
||||||
sources = ["src/example.cpp"]
|
sources = ["src/example.cpp"]
|
Loading…
Reference in new issue