changed structure

This commit is contained in:
Johannes Wendel
2019-04-24 19:22:55 +02:00
parent 8785c701be
commit 218cb65dd4
54 changed files with 1348 additions and 5278 deletions

View File

@@ -39,19 +39,19 @@ cmake_force:
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/clion/bin/cmake/linux/bin/cmake
CMAKE_COMMAND = /home/johannes/bin/clion-2018.3.4/bin/cmake/linux/bin/cmake
# The command to remove a file.
RM = /opt/clion/bin/cmake/linux/bin/cmake -E remove -f
RM = /home/johannes/bin/clion-2018.3.4/bin/cmake/linux/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/rhetenor/FlippR/flippr-code
CMAKE_SOURCE_DIR = /home/johannes/git/flippr-code
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/rhetenor/FlippR/flippr-code/cmake-build-debug
CMAKE_BINARY_DIR = /home/johannes/git/flippr-code/cmake-build-debug
#=============================================================================
# Targets provided globally by CMake.
@@ -59,7 +59,7 @@ CMAKE_BINARY_DIR = /home/rhetenor/FlippR/flippr-code/cmake-build-debug
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/opt/clion/bin/cmake/linux/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
/home/johannes/bin/clion-2018.3.4/bin/cmake/linux/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
@@ -70,7 +70,7 @@ rebuild_cache/fast: rebuild_cache
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/opt/clion/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
/home/johannes/bin/clion-2018.3.4/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
@@ -80,9 +80,9 @@ edit_cache/fast: edit_cache
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/rhetenor/FlippR/flippr-code/cmake-build-debug/CMakeFiles /home/rhetenor/FlippR/flippr-code/cmake-build-debug/CMakeFiles/progress.marks
$(CMAKE_COMMAND) -E cmake_progress_start /home/johannes/git/flippr-code/cmake-build-debug/CMakeFiles /home/johannes/git/flippr-code/cmake-build-debug/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/rhetenor/FlippR/flippr-code/cmake-build-debug/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start /home/johannes/git/flippr-code/cmake-build-debug/CMakeFiles 0
.PHONY : all
# The main clean target