mirror of
https://github.com/AdaCore/cuda.git
synced 2026-02-12 13:05:54 -08:00
19 lines
449 B
Plaintext
19 lines
449 B
Plaintext
with "cuda_api_device.gpr";
|
|
|
|
library project Device is
|
|
|
|
for Languages use ("Ada");
|
|
for Source_Dirs use ("src/common");
|
|
for Object_Dir use "obj/device";
|
|
|
|
for Target use "cuda";
|
|
for Library_Name use "kernel";
|
|
for Library_Dir use "lib";
|
|
|
|
package Compiler is
|
|
for Switches ("ada") use CUDA_API_Device.Compiler'Switches ("ada");
|
|
end Compiler;
|
|
|
|
for Archive_Builder use CUDA_API_Device'Archive_Builder;
|
|
|
|
end Device; |