Initial commit
This commit is contained in:
72
CMakeLists.txt
generated
Normal file
72
CMakeLists.txt
generated
Normal file
@@ -0,0 +1,72 @@
|
||||
# This file is automatically generated from cmake.toml - DO NOT EDIT
|
||||
# See https://github.com/build-cpp/cmkr for more information
|
||||
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
|
||||
message(FATAL_ERROR "In-tree builds are not supported. Run CMake from a separate directory: cmake -B build")
|
||||
endif()
|
||||
|
||||
set(CMKR_ROOT_PROJECT OFF)
|
||||
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
|
||||
set(CMKR_ROOT_PROJECT ON)
|
||||
|
||||
# Bootstrap cmkr and automatically regenerate CMakeLists.txt
|
||||
include(cmkr.cmake OPTIONAL RESULT_VARIABLE CMKR_INCLUDE_RESULT)
|
||||
if(CMKR_INCLUDE_RESULT)
|
||||
cmkr()
|
||||
endif()
|
||||
|
||||
# Enable folder support
|
||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||
|
||||
# Create a configure-time dependency on cmake.toml to improve IDE support
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS cmake.toml)
|
||||
endif()
|
||||
|
||||
project(lmake
|
||||
LANGUAGES
|
||||
C
|
||||
CXX
|
||||
VERSION
|
||||
0.0.1
|
||||
DESCRIPTION
|
||||
"A cmake & cmkr wrapper for the lazy people."
|
||||
)
|
||||
|
||||
# Target: lmake
|
||||
set(lmake_SOURCES
|
||||
cmake.toml
|
||||
"src/Output.cpp"
|
||||
"src/main.cpp"
|
||||
"src/main.cpp"
|
||||
)
|
||||
|
||||
add_executable(lmake)
|
||||
|
||||
target_sources(lmake PRIVATE ${lmake_SOURCES})
|
||||
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${lmake_SOURCES})
|
||||
|
||||
target_compile_features(lmake PRIVATE
|
||||
cxx_std_20
|
||||
)
|
||||
|
||||
target_include_directories(lmake PRIVATE
|
||||
"src/"
|
||||
)
|
||||
|
||||
target_link_libraries(lmake PRIVATE
|
||||
fmt
|
||||
)
|
||||
|
||||
set_target_properties(lmake PROPERTIES
|
||||
CXX_STANDARD
|
||||
20
|
||||
CXX_STANDARD_REQUIRED
|
||||
ON
|
||||
)
|
||||
|
||||
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 lmake)
|
||||
endif()
|
||||
Reference in New Issue
Block a user