forked from vmp3/vmemu
parent
29a40b4421
commit
11e24f2973
@ -0,0 +1,18 @@
|
|||||||
|
# This file is automatically generated from cmake.toml - DO NOT EDIT
|
||||||
|
# See https://github.com/build-cpp/cmkr for more information
|
||||||
|
|
||||||
|
# Create a configure-time dependency on cmake.toml to improve IDE support
|
||||||
|
if(CMKR_ROOT_PROJECT)
|
||||||
|
configure_file(cmake.toml cmake.toml COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# vmemu-cli
|
||||||
|
set(CMKR_CMAKE_FOLDER ${CMAKE_FOLDER})
|
||||||
|
if(CMAKE_FOLDER)
|
||||||
|
set(CMAKE_FOLDER "${CMAKE_FOLDER}/vmemu-cli")
|
||||||
|
else()
|
||||||
|
set(CMAKE_FOLDER vmemu-cli)
|
||||||
|
endif()
|
||||||
|
add_subdirectory(vmemu-cli)
|
||||||
|
set(CMAKE_FOLDER ${CMKR_CMAKE_FOLDER})
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
[subdir.vmemu-cli]
|
@ -0,0 +1,60 @@
|
|||||||
|
# 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)
|
||||||
|
|
||||||
|
# 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)
|
||||||
|
cmkr()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Enable folder support
|
||||||
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Create a configure-time dependency on cmake.toml to improve IDE support
|
||||||
|
if(CMKR_ROOT_PROJECT)
|
||||||
|
configure_file(cmake.toml cmake.toml COPYONLY)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
project(vmemu-cli)
|
||||||
|
|
||||||
|
# Target vmemu-cli
|
||||||
|
set(CMKR_TARGET vmemu-cli)
|
||||||
|
set(vmemu-cli_SOURCES "")
|
||||||
|
|
||||||
|
list(APPEND vmemu-cli_SOURCES
|
||||||
|
"src/main.cpp"
|
||||||
|
)
|
||||||
|
|
||||||
|
list(APPEND vmemu-cli_SOURCES
|
||||||
|
cmake.toml
|
||||||
|
)
|
||||||
|
|
||||||
|
set(CMKR_SOURCES ${vmemu-cli_SOURCES})
|
||||||
|
add_executable(vmemu-cli)
|
||||||
|
|
||||||
|
if(vmemu-cli_SOURCES)
|
||||||
|
target_sources(vmemu-cli PRIVATE ${vmemu-cli_SOURCES})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
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 vmemu-cli)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${vmemu-cli_SOURCES})
|
||||||
|
|
||||||
|
target_link_libraries(vmemu-cli PRIVATE
|
||||||
|
vmemu
|
||||||
|
)
|
||||||
|
|
||||||
|
unset(CMKR_TARGET)
|
||||||
|
unset(CMKR_SOURCES)
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
[project]
|
||||||
|
name = "vmemu-cli"
|
||||||
|
|
||||||
|
[target.vmemu-cli]
|
||||||
|
type = "executable"
|
||||||
|
|
||||||
|
sources = ["src/**.cpp"]
|
||||||
|
link-libraries = ["vmemu"]
|
Loading…
Reference in new issue