Dashboard chart flow

This commit is contained in:
mr
2024-07-17 13:28:02 +02:00
parent 7e4687853f
commit dce96e338c
136 changed files with 9016 additions and 425 deletions

View File

@@ -57,11 +57,49 @@ rule CXX_SHARED_LIBRARY_LINKER__desktop_window_plugin
restat = $RESTAT
#############################################
# Rule for compiling CXX files.
rule CXX_COMPILER__irondash_engine_context_plugin
depfile = $DEP_FILE
deps = gcc
command = /snap/flutter/current/usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building CXX object $out
#############################################
# Rule for linking CXX shared library.
rule CXX_SHARED_LIBRARY_LINKER__irondash_engine_context_plugin
command = $PRE_LINK && /snap/flutter/current/usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
description = Linking CXX shared library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling CXX files.
rule CXX_COMPILER__super_native_extensions_plugin
depfile = $DEP_FILE
deps = gcc
command = /snap/flutter/current/usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building CXX object $out
#############################################
# Rule for linking CXX shared library.
rule CXX_SHARED_LIBRARY_LINKER__super_native_extensions_plugin
command = $PRE_LINK && /snap/flutter/current/usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
description = Linking CXX shared library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = /snap/flutter/145/usr/bin/cmake -S/home/mr/Documents/OC/oc-front/oc_front/linux -B/home/mr/Documents/OC/oc-front/oc_front/build/linux/x64/debug
command = /snap/flutter/145/usr/bin/cmake -S/home/mr/Documents/OC/oc-front/linux -B/home/mr/Documents/OC/oc-front/build/linux/x64/debug
description = Re-running CMake...
generator = 1