-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Scofield
committed
Nov 25, 2020
0 parents
commit 62d76b5
Showing
96 changed files
with
11,356 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
Language: Cpp | ||
AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: true | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
AlignConsecutiveMacros: false | ||
AlignEscapedNewlines: DontAlign | ||
AlignOperands: false | ||
AlignTrailingComments: true | ||
AllowAllArgumentsOnNextLine: false | ||
AllowAllConstructorInitializersOnNextLine: false | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: Empty | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: Always | ||
AllowShortLambdasOnASingleLine: All | ||
AllowShortLoopsOnASingleLine: true | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterCaseLabel: false | ||
AfterClass: true | ||
AfterControlStatement: MultiLine | ||
AfterEnum: true | ||
AfterFunction: false | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: true | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
SplitEmptyFunction: false | ||
SplitEmptyRecord: false | ||
SplitEmptyNamespace: true | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializers: BeforeColon | ||
BreakInheritanceList: BeforeColon | ||
BreakStringLiterals: true | ||
ColumnLimit: 160 | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: false | ||
ContinuationIndentWidth: 2 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
FixNamespaceComments: true | ||
IncludeBlocks: Preserve | ||
IndentCaseLabels: true | ||
IndentGotoLabels: true | ||
IndentPPDirectives: None | ||
IndentWidth: 4 | ||
IndentWrappedFunctionNames: false | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
NamespaceIndentation: None | ||
PointerAlignment: Left | ||
ReflowComments: false | ||
SortIncludes: false | ||
SortUsingDeclarations: false | ||
SpaceAfterCStyleCast: false | ||
SpaceAfterLogicalNot: false | ||
SpaceAfterTemplateKeyword: true | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCpp11BracedList: false | ||
SpaceBeforeCtorInitializerColon: true | ||
SpaceBeforeInheritanceColon: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
SpaceInEmptyBlock: false | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 4 | ||
SpacesInAngles: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInContainerLiterals: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: c++17 | ||
TabWidth: 4 | ||
UseTab: Always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.vscode | ||
bin | ||
build | ||
/CMakeFiles | ||
/CUI/CMakeFiles | ||
*.bat | ||
CMakeCache.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# ----------------------------- | ||
|
||
cmake_minimum_required(VERSION 3.14) | ||
project(CUI) | ||
|
||
# ----------------------------- | ||
|
||
add_library(CUI INTERFACE) | ||
|
||
target_include_directories(CUI | ||
INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/cui>) | ||
target_include_directories(CUI | ||
INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CodeBlocks_project_file> | ||
<FileVersion major="1" minor="6"/> | ||
<Project> | ||
<Option title="CUI"/> | ||
<Option makefile_is_custom="1"/> | ||
<Option compiler="gcc"/> | ||
<Option virtualFolders="CMake Files\;CMake Files\CUI\;CMake Files\SFML-2.5.1\;CMake Files\SFML-2.5.1\lib\;CMake Files\SFML-2.5.1\lib\cmake\;CMake Files\SFML-2.5.1\lib\cmake\SFML\;"/> | ||
<Build> | ||
<Target title="all"> | ||
<Option working_dir="D:/Coding/__GIT/CPP/CUI-SFML/CUI"/> | ||
<Option type="4"/> | ||
<MakeCommands> | ||
<Build command="D:/Coding/__C_C++/MSYS2/mingw64/bin/mingw32-make.exe -f "D:/Coding/__GIT/CPP/CUI-SFML/CUI/Makefile" VERBOSE=1 all"/> | ||
<CompileFile command="D:/Coding/__C_C++/MSYS2/mingw64/bin/mingw32-make.exe -f "D:/Coding/__GIT/CPP/CUI-SFML/CUI/Makefile" VERBOSE=1 "$file""/> | ||
<Clean command="D:/Coding/__C_C++/MSYS2/mingw64/bin/mingw32-make.exe -f "D:/Coding/__GIT/CPP/CUI-SFML/CUI/Makefile" VERBOSE=1 clean"/> | ||
<DistClean command="D:/Coding/__C_C++/MSYS2/mingw64/bin/mingw32-make.exe -f "D:/Coding/__GIT/CPP/CUI-SFML/CUI/Makefile" VERBOSE=1 clean"/> | ||
</MakeCommands> | ||
</Target> | ||
</Build> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/CMakeLists.txt"> | ||
<Option virtualFolder="CMake Files\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/CUI/CMakeLists.txt"> | ||
<Option virtualFolder="CMake Files\CUI\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLConfig.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLConfigDependencies.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLConfigVersion.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLSharedTargets-debug.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLSharedTargets-release.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
<Unit filename="D:/Coding/__GIT/CPP/CUI-SFML/SFML-2.5.1/lib/cmake/SFML/SFMLSharedTargets.cmake"> | ||
<Option virtualFolder="CMake Files\SFML-2.5.1\lib\cmake\SFML\"/> | ||
</Unit> | ||
</Project> | ||
</CodeBlocks_project_file> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Generated by CMake | ||
|
||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5) | ||
message(FATAL_ERROR "CMake >= 2.6.0 required") | ||
endif() | ||
cmake_policy(PUSH) | ||
cmake_policy(VERSION 2.6) | ||
#---------------------------------------------------------------- | ||
# Generated CMake target import file. | ||
#---------------------------------------------------------------- | ||
|
||
# Commands may need to know the format version. | ||
set(CMAKE_IMPORT_FILE_VERSION 1) | ||
|
||
if(CMAKE_VERSION VERSION_LESS 3.0.0) | ||
message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.") | ||
endif() | ||
|
||
# Protect against multiple inclusion, which would fail when already imported targets are added once more. | ||
set(_targetsDefined) | ||
set(_targetsNotDefined) | ||
set(_expectedTargets) | ||
foreach(_expectedTarget CUI::CUI) | ||
list(APPEND _expectedTargets ${_expectedTarget}) | ||
if(NOT TARGET ${_expectedTarget}) | ||
list(APPEND _targetsNotDefined ${_expectedTarget}) | ||
endif() | ||
if(TARGET ${_expectedTarget}) | ||
list(APPEND _targetsDefined ${_expectedTarget}) | ||
endif() | ||
endforeach() | ||
if("${_targetsDefined}" STREQUAL "${_expectedTargets}") | ||
unset(_targetsDefined) | ||
unset(_targetsNotDefined) | ||
unset(_expectedTargets) | ||
set(CMAKE_IMPORT_FILE_VERSION) | ||
cmake_policy(POP) | ||
return() | ||
endif() | ||
if(NOT "${_targetsDefined}" STREQUAL "") | ||
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n") | ||
endif() | ||
unset(_targetsDefined) | ||
unset(_targetsNotDefined) | ||
unset(_expectedTargets) | ||
|
||
|
||
# Create imported target CUI::CUI | ||
add_library(CUI::CUI INTERFACE IMPORTED) | ||
|
||
set_target_properties(CUI::CUI PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "D:/Coding/__GIT/CUI/include/" | ||
INTERFACE_SOURCES "D:/Coding/__GIT/CUI/include/aliases.hpp;D:/Coding/__GIT/CUI/include/compile_time/data_types/color.hpp;D:/Coding/__GIT/CUI/include/compile_time/data_types/data_types.hpp;D:/Coding/__GIT/CUI/include/compile_time/data_types/instruction.hpp;D:/Coding/__GIT/CUI/include/compile_time/data_types/vec.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/detail/consume.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/detail/log10.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/detail/pow.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/detail/size_information.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/fmt.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/fmt_string_view.hpp;D:/Coding/__GIT/CUI/include/compile_time/format/format.hpp;D:/Coding/__GIT/CUI/include/compile_time/mem_utils/memcpy.hpp;D:/Coding/__GIT/CUI/include/compile_time/mem_utils/memmove.hpp;D:/Coding/__GIT/CUI/include/compile_time/mem_utils/memset.hpp;D:/Coding/__GIT/CUI/include/compile_time/scene.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/block.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/detail/count_amount_of_blocks.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/detail/count_max_depth.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/detail/count_tabs.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/detail/find_parent.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/detail/valid_block_name.hpp;D:/Coding/__GIT/CUI/include/compile_time/scenes/parse_scenes.hpp;D:/Coding/__GIT/CUI/include/compile_time/stream/stream.hpp;D:/Coding/__GIT/CUI/include/compile_time/stream/stream_utils.hpp;D:/Coding/__GIT/CUI/include/compile_time/string/char_traits.hpp;D:/Coding/__GIT/CUI/include/compile_time/string/string_view.hpp;D:/Coding/__GIT/CUI/include/compile_time/style.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/attribute.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/attribute_data.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/data_with_rule.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/definition.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/constants.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/helper_macros.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/styles/count_definitions.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/styles/get_attribute_index.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/valid_attribute_types.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/char_checks.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/dt_to_vat.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/function_argument_list.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/dependencies.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/is_in_set.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/rgb.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/rgba.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/validate_arg_types.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/functions/vec.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/index_of_function_name.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/is_correct_value_for_attr_type.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/lookup_function.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/lookup_string.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/parse_float.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/parse_int.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/parse_percentage.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/pow.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/validate_attribute_type.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/detail/values/value_type.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/parse_attribute_value.hpp;D:/Coding/__GIT/CUI/include/compile_time/styles/parse_styles.hpp;D:/Coding/__GIT/CUI/include/compile_time/value_data.hpp;D:/Coding/__GIT/CUI/include/compile_time/variant/variant.hpp;D:/Coding/__GIT/CUI/include/containers/detail/nary_tree/const_node_iterator.hpp;D:/Coding/__GIT/CUI/include/containers/detail/nary_tree/node_iterator.hpp;D:/Coding/__GIT/CUI/include/containers/nary_tree.hpp;D:/Coding/__GIT/CUI/include/containers/static_stack.hpp;D:/Coding/__GIT/CUI/include/containers/static_vector.hpp;D:/Coding/__GIT/CUI/include/containers/tracked_vector.hpp;D:/Coding/__GIT/CUI/include/containers/vector.hpp;D:/Coding/__GIT/CUI/include/engine/base_event_manager.hpp;D:/Coding/__GIT/CUI/include/engine/detail/has/cache.hpp;D:/Coding/__GIT/CUI/include/engine/detail/has/poll_event.hpp;D:/Coding/__GIT/CUI/include/mem_profiler/memcounter.hpp;D:/Coding/__GIT/CUI/include/mem_profiler/memtrack.hpp;D:/Coding/__GIT/CUI/include/utils/abs.hpp;D:/Coding/__GIT/CUI/include/utils/declval.hpp;D:/Coding/__GIT/CUI/include/utils/detail/declval_impl.hpp;D:/Coding/__GIT/CUI/include/utils/detail/integral_constant.hpp;D:/Coding/__GIT/CUI/include/utils/detail/is_lvalue_reference.hpp;D:/Coding/__GIT/CUI/include/utils/detail/remove_reference.hpp;D:/Coding/__GIT/CUI/include/utils/distance.hpp;D:/Coding/__GIT/CUI/include/utils/forward.hpp;D:/Coding/__GIT/CUI/include/utils/make_array.hpp;D:/Coding/__GIT/CUI/include/utils/min.hpp;D:/Coding/__GIT/CUI/include/utils/move.hpp;D:/Coding/__GIT/CUI/include/utils/void_t.hpp;D:/Coding/__GIT/CUI/include/value_data.hpp;D:/Coding/__GIT/CUI/include/visual/attributes.hpp;D:/Coding/__GIT/CUI/include/visual/base_render_context.hpp;D:/Coding/__GIT/CUI/include/visual/node.hpp;D:/Coding/__GIT/CUI/include/visual/rules.hpp;D:/Coding/__GIT/CUI/include/visual/scene_graph.hpp;D:/Coding/__GIT/CUI/include/visual/schematic.hpp;D:/Coding/__GIT/CUI/include/window.hpp" | ||
) | ||
|
||
# This file does not depend on other imported targets which have | ||
# been exported from the same project but in a separate export set. | ||
|
||
# Commands beyond this point should not need to know the version. | ||
set(CMAKE_IMPORT_FILE_VERSION) | ||
cmake_policy(POP) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# CMAKE generated file: DO NOT EDIT! | ||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.16 | ||
|
||
# Default target executed when no arguments are given to make. | ||
default_target: all | ||
|
||
.PHONY : default_target | ||
|
||
# Allow only one "make -f Makefile2" at a time, but pass parallelism. | ||
.NOTPARALLEL: | ||
|
||
|
||
#============================================================================= | ||
# Special targets provided by cmake. | ||
|
||
# Disable implicit rules so canonical targets will work. | ||
.SUFFIXES: | ||
|
||
|
||
# Remove some rules from gmake that .SUFFIXES does not remove. | ||
SUFFIXES = | ||
|
||
.SUFFIXES: .hpux_make_needs_suffix_list | ||
|
||
|
||
# Suppress display of executed commands. | ||
$(VERBOSE).SILENT: | ||
|
||
|
||
# A target that is always out of date. | ||
cmake_force: | ||
|
||
.PHONY : cmake_force | ||
|
||
#============================================================================= | ||
# Set environment variables for the build. | ||
|
||
SHELL = cmd.exe | ||
|
||
# The CMake executable. | ||
CMAKE_COMMAND = "D:\Coding\__C_C++\CLion 2018.3.4\bin\cmake\win\bin\cmake.exe" | ||
|
||
# The command to remove a file. | ||
RM = "D:\Coding\__C_C++\CLion 2018.3.4\bin\cmake\win\bin\cmake.exe" -E remove -f | ||
|
||
# Escaping for special characters. | ||
EQUALS = = | ||
|
||
# The top-level source directory on which CMake was run. | ||
CMAKE_SOURCE_DIR = D:\Coding\__GIT\CPP\CUI-SFML | ||
|
||
# The top-level build directory on which CMake was run. | ||
CMAKE_BINARY_DIR = D:\Coding\__GIT\CPP\CUI-SFML | ||
|
||
#============================================================================= | ||
# Targets provided globally by CMake. | ||
|
||
# Special rule for the target edit_cache | ||
edit_cache: | ||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." | ||
"D:\Coding\__C_C++\CLion 2018.3.4\bin\cmake\win\bin\cmake.exe" -E echo "No interactive CMake dialog available." | ||
.PHONY : edit_cache | ||
|
||
# Special rule for the target edit_cache | ||
edit_cache/fast: edit_cache | ||
|
||
.PHONY : edit_cache/fast | ||
|
||
# Special rule for the target rebuild_cache | ||
rebuild_cache: | ||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." | ||
"D:\Coding\__C_C++\CLion 2018.3.4\bin\cmake\win\bin\cmake.exe" -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) | ||
.PHONY : rebuild_cache | ||
|
||
# Special rule for the target rebuild_cache | ||
rebuild_cache/fast: rebuild_cache | ||
|
||
.PHONY : rebuild_cache/fast | ||
|
||
# The main all target | ||
all: cmake_check_build_system | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(CMAKE_COMMAND) -E cmake_progress_start D:\Coding\__GIT\CPP\CUI-SFML\CMakeFiles D:\Coding\__GIT\CPP\CUI-SFML\CUI\CMakeFiles\progress.marks | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(MAKE) -f CMakeFiles\Makefile2 CUI/all | ||
$(CMAKE_COMMAND) -E cmake_progress_start D:\Coding\__GIT\CPP\CUI-SFML\CMakeFiles 0 | ||
.PHONY : all | ||
|
||
# The main clean target | ||
clean: | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(MAKE) -f CMakeFiles\Makefile2 CUI/clean | ||
.PHONY : clean | ||
|
||
# The main clean target | ||
clean/fast: clean | ||
|
||
.PHONY : clean/fast | ||
|
||
# Prepare targets for installation. | ||
preinstall: all | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(MAKE) -f CMakeFiles\Makefile2 CUI/preinstall | ||
.PHONY : preinstall | ||
|
||
# Prepare targets for installation. | ||
preinstall/fast: | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(MAKE) -f CMakeFiles\Makefile2 CUI/preinstall | ||
.PHONY : preinstall/fast | ||
|
||
# clear depends | ||
depend: | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 1 | ||
.PHONY : depend | ||
|
||
# Help Target | ||
help: | ||
@echo The following are some of the valid targets for this Makefile: | ||
@echo ... all (the default if no target is provided) | ||
@echo ... clean | ||
@echo ... depend | ||
@echo ... edit_cache | ||
@echo ... rebuild_cache | ||
.PHONY : help | ||
|
||
|
||
|
||
#============================================================================= | ||
# Special targets to cleanup operation of make. | ||
|
||
# Special rule to run CMake to check the build system integrity. | ||
# No rule that depends on this can have commands that come from listfiles | ||
# because they might be regenerated. | ||
cmake_check_build_system: | ||
cd /d D:\Coding\__GIT\CPP\CUI-SFML && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 | ||
.PHONY : cmake_check_build_system | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Install script for directory: D:/Coding/__GIT/CPP/CUI-SFML/CUI | ||
|
||
# Set the install prefix | ||
if(NOT DEFINED CMAKE_INSTALL_PREFIX) | ||
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/CUI-SFML") | ||
endif() | ||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") | ||
|
||
# Set the install configuration name. | ||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) | ||
if(BUILD_TYPE) | ||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" | ||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") | ||
else() | ||
set(CMAKE_INSTALL_CONFIG_NAME "Debug") | ||
endif() | ||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") | ||
endif() | ||
|
||
# Set the component getting installed. | ||
if(NOT CMAKE_INSTALL_COMPONENT) | ||
if(COMPONENT) | ||
message(STATUS "Install component: \"${COMPONENT}\"") | ||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") | ||
else() | ||
set(CMAKE_INSTALL_COMPONENT) | ||
endif() | ||
endif() | ||
|
||
# Is this installation the result of a crosscompile? | ||
if(NOT DEFINED CMAKE_CROSSCOMPILING) | ||
set(CMAKE_CROSSCOMPILING "FALSE") | ||
endif() | ||
|
Oops, something went wrong.