@@ -116,13 +116,10 @@ project "PluginInteropUnityCUDA"
116
116
-- This assumes you have installed Visual Studio integration for CUDA
117
117
-- Here we have it set to 11.4
118
118
buildcustomizations " BuildCustomizations/CUDA 12.1"
119
- cudaPath " /usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
119
+ -- cudaPath "/usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
120
120
121
121
-- CUDA specific properties
122
- cudaFiles
123
- {
124
- SourceDir .. " **.cu"
125
- }
122
+ cudaFiles {SourceDir .. " **.cu" }
126
123
cudaMaxRegCount " 32"
127
124
128
125
-- Let's compile for all supported architectures (and also in parallel with -t0)
@@ -204,13 +201,10 @@ project "SampleBasic"
204
201
-- This assumes you have installed Visual Studio integration for CUDA
205
202
-- Here we have it set to 11.4
206
203
buildcustomizations " BuildCustomizations/CUDA 12.1"
207
- cudaPath " /usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
204
+ -- cudaPath "/usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
208
205
209
206
-- CUDA specific properties
210
- cudaFiles
211
- {
212
- SourceDir .. " **.cu"
213
- }
207
+ cudaFiles {SourceDir .. " **.cu" }
214
208
cudaMaxRegCount " 32"
215
209
216
210
-- Let's compile for all supported architectures (and also in parallel with -t0)
@@ -266,7 +260,7 @@ project "Utilities"
266
260
-- This assumes you have installed Visual Studio integration for CUDA
267
261
-- Here we have it set to 11.4
268
262
buildcustomizations " BuildCustomizations/CUDA 12.1"
269
- cudaPath " /usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
263
+ -- cudaPath "/usr/local/cuda" -- Only affects linux, because the windows builds get CUDA from the VS extension
270
264
271
265
cudaMaxRegCount " 32"
272
266
-- Let's compile for all supported architectures (and also in parallel with -t0)
0 commit comments