add vscode project config
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
This commit is contained in:
parent
858859043b
commit
2bd92fb719
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,7 +5,6 @@
|
|||||||
/.settings
|
/.settings
|
||||||
/.classpath
|
/.classpath
|
||||||
/.project
|
/.project
|
||||||
/.vscode
|
|
||||||
/shared-folder
|
/shared-folder
|
||||||
/shared-folder/**
|
/shared-folder/**
|
||||||
/src/main/c/lib/**
|
/src/main/c/lib/**
|
||||||
22
.vscode/c_cpp_properties.json
vendored
Normal file
22
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Win32",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"C:/Program Files/Eclipse Adoptium/jdk-17.0.10.7-hotspot/include/**"
|
||||||
|
],
|
||||||
|
"defines": [
|
||||||
|
"_DEBUG",
|
||||||
|
"UNICODE",
|
||||||
|
"_UNICODE"
|
||||||
|
],
|
||||||
|
"windowsSdkVersion": "10.0.19041.0",
|
||||||
|
"compilerPath": "C:/Program Files/w64devkit/bin/gcc.exe",
|
||||||
|
"cStandard": "c17",
|
||||||
|
"cppStandard": "c++17",
|
||||||
|
"intelliSenseMode": "windows-gcc-x64"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Launch Java Program",
|
||||||
|
"request": "launch",
|
||||||
|
"mainClass": "electrosphere.Main",
|
||||||
|
"vmArgs": "-Djava.library.path=./shared-folder"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
18
.vscode/settings.json
vendored
Normal file
18
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
|
"files.associations": {
|
||||||
|
"stdio.h": "c",
|
||||||
|
"jni.h": "c",
|
||||||
|
"immintrin.h": "c",
|
||||||
|
"stdint.h": "c",
|
||||||
|
"utilities.h": "c",
|
||||||
|
"chunkmask.h": "c",
|
||||||
|
"pthread.h": "c",
|
||||||
|
"semaphore.h": "c",
|
||||||
|
"libfluidsim.h": "c",
|
||||||
|
"stb_ds.h": "c",
|
||||||
|
"threadpool.h": "c",
|
||||||
|
"electrosphere_fluidsim.h": "c",
|
||||||
|
"type_traits": "c"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user