blob: 697988d6b29cc5638ec7eeb885c370728c17a6fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/csh
setenv AMDAPPSDKROOT /opt/amd-app-sdk
setenv AMDAPPSDKSAMPLESROOT /opt/amd-app-sdk
if ($?CPPFLAGS == 0) then
setenv CPPFLAGS "-I$AMDAPPSDKROOT/include"
else
setenv CPPFLAGS "$CPPFLAGS -I$AMDAPPSDKROOT/include"
endif
# For retrocompatibility with the former name of the SDK...
setenv ATISTREAMSDKROOT $AMDAPPSDKROOT
|