forked from vmp3/vmprofiler
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.
88 lines
1.9 KiB
88 lines
1.9 KiB
# 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(vm_entry_test)
|
|
|
|
# Target cli-parser
|
|
set(CMKR_TARGET cli-parser)
|
|
set(cli-parser_SOURCES "")
|
|
|
|
set(CMKR_SOURCES ${cli-parser_SOURCES})
|
|
add_library(cli-parser INTERFACE)
|
|
|
|
if(cli-parser_SOURCES)
|
|
target_sources(cli-parser INTERFACE ${cli-parser_SOURCES})
|
|
endif()
|
|
|
|
target_include_directories(cli-parser INTERFACE
|
|
"../deps/cli-parser"
|
|
)
|
|
|
|
unset(CMKR_TARGET)
|
|
unset(CMKR_SOURCES)
|
|
|
|
# Target vm_entry_test
|
|
set(CMKR_TARGET vm_entry_test)
|
|
set(vm_entry_test_SOURCES "")
|
|
|
|
list(APPEND vm_entry_test_SOURCES
|
|
"src/main.cpp"
|
|
)
|
|
|
|
list(APPEND vm_entry_test_SOURCES
|
|
cmake.toml
|
|
)
|
|
|
|
set(CMKR_SOURCES ${vm_entry_test_SOURCES})
|
|
add_executable(vm_entry_test)
|
|
|
|
if(vm_entry_test_SOURCES)
|
|
target_sources(vm_entry_test PRIVATE ${vm_entry_test_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 vm_entry_test)
|
|
endif()
|
|
|
|
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${vm_entry_test_SOURCES})
|
|
|
|
target_compile_definitions(vm_entry_test PRIVATE
|
|
NOMINMAX
|
|
)
|
|
|
|
target_compile_features(vm_entry_test PRIVATE
|
|
cxx_std_20
|
|
)
|
|
|
|
target_link_libraries(vm_entry_test PRIVATE
|
|
vmprofiler
|
|
cli-parser
|
|
)
|
|
|
|
unset(CMKR_TARGET)
|
|
unset(CMKR_SOURCES)
|
|
|