From 91748c2bbc3c142a511a180dc7446be1a80f56d8 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 1 Oct 2021 14:21:49 +0200 Subject: [PATCH] Add CLion macOS project files --- spine-godot/.idea/.gitignore | 8 ++ spine-godot/.idea/codeStyles/Project.xml | 12 ++ .../.idea/codeStyles/codeStyleConfig.xml | 5 + spine-godot/.idea/customTargets.xml | 15 +++ .../inspectionProfiles/Project_Default.xml | 6 + spine-godot/.idea/misc.xml | 17 +++ spine-godot/.idea/tools/External Tools.xml | 16 +++ spine-godot/.idea/vcs.xml | 6 + spine-godot/.idea/workspace.xml | 105 ++++++++++++++++++ spine-godot/setup.sh | 3 +- 10 files changed, 192 insertions(+), 1 deletion(-) create mode 100644 spine-godot/.idea/.gitignore create mode 100644 spine-godot/.idea/codeStyles/Project.xml create mode 100644 spine-godot/.idea/codeStyles/codeStyleConfig.xml create mode 100644 spine-godot/.idea/customTargets.xml create mode 100644 spine-godot/.idea/inspectionProfiles/Project_Default.xml create mode 100644 spine-godot/.idea/misc.xml create mode 100644 spine-godot/.idea/tools/External Tools.xml create mode 100644 spine-godot/.idea/vcs.xml create mode 100644 spine-godot/.idea/workspace.xml diff --git a/spine-godot/.idea/.gitignore b/spine-godot/.idea/.gitignore new file mode 100644 index 000000000..73f69e095 --- /dev/null +++ b/spine-godot/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/spine-godot/.idea/codeStyles/Project.xml b/spine-godot/.idea/codeStyles/Project.xml new file mode 100644 index 000000000..05a8cea49 --- /dev/null +++ b/spine-godot/.idea/codeStyles/Project.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/spine-godot/.idea/codeStyles/codeStyleConfig.xml b/spine-godot/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 000000000..79ee123c2 --- /dev/null +++ b/spine-godot/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/spine-godot/.idea/customTargets.xml b/spine-godot/.idea/customTargets.xml new file mode 100644 index 000000000..9a3229956 --- /dev/null +++ b/spine-godot/.idea/customTargets.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spine-godot/.idea/inspectionProfiles/Project_Default.xml b/spine-godot/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 000000000..03d9549ea --- /dev/null +++ b/spine-godot/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/spine-godot/.idea/misc.xml b/spine-godot/.idea/misc.xml new file mode 100644 index 000000000..8067168ab --- /dev/null +++ b/spine-godot/.idea/misc.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/spine-godot/.idea/tools/External Tools.xml b/spine-godot/.idea/tools/External Tools.xml new file mode 100644 index 000000000..258fa71c5 --- /dev/null +++ b/spine-godot/.idea/tools/External Tools.xml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/spine-godot/.idea/vcs.xml b/spine-godot/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/spine-godot/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/spine-godot/.idea/workspace.xml b/spine-godot/.idea/workspace.xml new file mode 100644 index 000000000..529c1a0ce --- /dev/null +++ b/spine-godot/.idea/workspace.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1633088939732 + + + + + + \ No newline at end of file diff --git a/spine-godot/setup.sh b/spine-godot/setup.sh index 28de86933..f301c35e0 100755 --- a/spine-godot/setup.sh +++ b/spine-godot/setup.sh @@ -1,9 +1,10 @@ #!/bin/bash set -e rm -rf godot -cp -r ../spine-cpp/spine-cpp spine-godot +cp -r ../spine-cpp/spine-cpp spine_godot git clone --depth 1 https://github.com/godotengine/godot.git -b 3.3.4-stable cp custom.py godot +cp -r .idea godot ln -s $(pwd)/spine_godot godot/modules/spine_godot pushd godot scons target=debug --jobs=$(sysctl -n hw.logicalcpu)