From ccbd4bfe55ee991a88f252dfd3108b981f93e476 Mon Sep 17 00:00:00 2001 From: David Mak Date: Wed, 12 Jun 2024 16:06:24 +0800 Subject: [PATCH] meta: Add RustRover configuration files --- .idea/.gitignore | 6 ++++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/inspectionProfiles/Project_Default.xml | 8 +++++++ .idea/modules.xml | 8 +++++++ .idea/nac3.iml | 18 ++++++++++++++++ .idea/runConfigurations/Build_All__Debug_.xml | 19 +++++++++++++++++ .../runConfigurations/Build_All__Release_.xml | 19 +++++++++++++++++ .../Build_Standalone__Debug_.xml | 19 +++++++++++++++++ .../Build_Standalone__Release_.xml | 19 +++++++++++++++++ .idea/runConfigurations/Clean.xml | 19 +++++++++++++++++ .../Nix_Build__nac3artiq_.xml | 17 +++++++++++++++ .idea/runConfigurations/Test.xml | 19 +++++++++++++++++ .../check_demos_sh__Debug___O0_.xml | 21 +++++++++++++++++++ .../check_demos_sh__Debug___O2_.xml | 19 +++++++++++++++++ .../check_demos_sh__Release___O0_.xml | 19 +++++++++++++++++ .../check_demos_sh__Release___O2_.xml | 19 +++++++++++++++++ .idea/vcs.xml | 13 ++++++++++++ 17 files changed, 267 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/nac3.iml create mode 100644 .idea/runConfigurations/Build_All__Debug_.xml create mode 100644 .idea/runConfigurations/Build_All__Release_.xml create mode 100644 .idea/runConfigurations/Build_Standalone__Debug_.xml create mode 100644 .idea/runConfigurations/Build_Standalone__Release_.xml create mode 100644 .idea/runConfigurations/Clean.xml create mode 100644 .idea/runConfigurations/Nix_Build__nac3artiq_.xml create mode 100644 .idea/runConfigurations/Test.xml create mode 100644 .idea/runConfigurations/check_demos_sh__Debug___O0_.xml create mode 100644 .idea/runConfigurations/check_demos_sh__Debug___O2_.xml create mode 100644 .idea/runConfigurations/check_demos_sh__Release___O0_.xml create mode 100644 .idea/runConfigurations/check_demos_sh__Release___O2_.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..8bf4d45d --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,6 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..a55e7a17 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..b7372f02 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..ca14db5b --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/nac3.iml b/.idea/nac3.iml new file mode 100644 index 00000000..c9cdbf83 --- /dev/null +++ b/.idea/nac3.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Build_All__Debug_.xml b/.idea/runConfigurations/Build_All__Debug_.xml new file mode 100644 index 00000000..afdc8115 --- /dev/null +++ b/.idea/runConfigurations/Build_All__Debug_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Build_All__Release_.xml b/.idea/runConfigurations/Build_All__Release_.xml new file mode 100644 index 00000000..00ead129 --- /dev/null +++ b/.idea/runConfigurations/Build_All__Release_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Build_Standalone__Debug_.xml b/.idea/runConfigurations/Build_Standalone__Debug_.xml new file mode 100644 index 00000000..ffb99040 --- /dev/null +++ b/.idea/runConfigurations/Build_Standalone__Debug_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Build_Standalone__Release_.xml b/.idea/runConfigurations/Build_Standalone__Release_.xml new file mode 100644 index 00000000..08eb11f1 --- /dev/null +++ b/.idea/runConfigurations/Build_Standalone__Release_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Clean.xml b/.idea/runConfigurations/Clean.xml new file mode 100644 index 00000000..17dda181 --- /dev/null +++ b/.idea/runConfigurations/Clean.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Nix_Build__nac3artiq_.xml b/.idea/runConfigurations/Nix_Build__nac3artiq_.xml new file mode 100644 index 00000000..a690d721 --- /dev/null +++ b/.idea/runConfigurations/Nix_Build__nac3artiq_.xml @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Test.xml b/.idea/runConfigurations/Test.xml new file mode 100644 index 00000000..733c4a6d --- /dev/null +++ b/.idea/runConfigurations/Test.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/check_demos_sh__Debug___O0_.xml b/.idea/runConfigurations/check_demos_sh__Debug___O0_.xml new file mode 100644 index 00000000..bcc06560 --- /dev/null +++ b/.idea/runConfigurations/check_demos_sh__Debug___O0_.xml @@ -0,0 +1,21 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/check_demos_sh__Debug___O2_.xml b/.idea/runConfigurations/check_demos_sh__Debug___O2_.xml new file mode 100644 index 00000000..f7655621 --- /dev/null +++ b/.idea/runConfigurations/check_demos_sh__Debug___O2_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/check_demos_sh__Release___O0_.xml b/.idea/runConfigurations/check_demos_sh__Release___O0_.xml new file mode 100644 index 00000000..3ed5805c --- /dev/null +++ b/.idea/runConfigurations/check_demos_sh__Release___O0_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/check_demos_sh__Release___O2_.xml b/.idea/runConfigurations/check_demos_sh__Release___O2_.xml new file mode 100644 index 00000000..f4d4dab4 --- /dev/null +++ b/.idea/runConfigurations/check_demos_sh__Release___O2_.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..a081b18c --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file