Minor Cleanup
This commit is contained in:
Vendored
+5
-8
@@ -2,16 +2,13 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "lldb",
|
||||
"type": "codelldb",
|
||||
"request": "launch",
|
||||
"name": "c",
|
||||
"stdio": [
|
||||
"input.txt",
|
||||
null
|
||||
],
|
||||
"preLaunchTask": "Compile",
|
||||
"name": "Debug evk (codelldb)",
|
||||
"preLaunchTask": "Build",
|
||||
"expressions": "native",
|
||||
"program": "${workspaceFolder}/build/evk.exe"
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/build/evk"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
[binaries]
|
||||
c = 'clang-19'
|
||||
c_ld = 'lld-19'
|
||||
cpp = 'clang++-19'
|
||||
cpp_ld = 'lld-19'
|
||||
c = 'clang'
|
||||
c_ld = 'lld'
|
||||
cpp = 'clang++'
|
||||
cpp_ld = 'lld'
|
||||
|
||||
[properties]
|
||||
c_args = ['-DEV_CC_CLANG=1','-fcolor-diagnostics', '-fansi-escape-codes', '-fms-extensions']
|
||||
|
||||
[cmake]
|
||||
CMAKE_C_COMPILER = 'clang-19'
|
||||
CMAKE_C_COMPILER = 'clang'
|
||||
|
||||
@@ -8,7 +8,7 @@ vulkan_dep = dependency('vulkan').partial_dependency(compile_args : true)
|
||||
|
||||
volk_inc = include_directories('.')
|
||||
|
||||
volk_src = files('volk_impl.c')
|
||||
volk_src = files('volk.c')
|
||||
|
||||
volk_lib = library(
|
||||
'volk',
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
#define VOLK_IMPLEMENTATION
|
||||
#include "volk.h"
|
||||
@@ -1,2 +0,0 @@
|
||||
[wrap-redirect]
|
||||
filename = shaderc/subprojects/shaderc_cmake.wrap
|
||||
Reference in New Issue
Block a user