diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2020-08-07 16:33:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-03 15:46:11 (GMT) |
commit | 5a1750017e65727660167ae1953746a3fd3d2c7b (patch) | |
tree | 5a5361794d3b7ae926c23e0efec1b3601963319f /Tests/RunCMake/CompilerLauncher/test.ispc | |
parent | ca5babfd7a1da8e32f927ad086fdd91c2b09853b (diff) | |
download | CMake-5a1750017e65727660167ae1953746a3fd3d2c7b.zip CMake-5a1750017e65727660167ae1953746a3fd3d2c7b.tar.gz CMake-5a1750017e65727660167ae1953746a3fd3d2c7b.tar.bz2 |
ISPC: Add compiler launcher support
Diffstat (limited to 'Tests/RunCMake/CompilerLauncher/test.ispc')
-rw-r--r-- | Tests/RunCMake/CompilerLauncher/test.ispc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/CompilerLauncher/test.ispc b/Tests/RunCMake/CompilerLauncher/test.ispc new file mode 100644 index 0000000..b061f40 --- /dev/null +++ b/Tests/RunCMake/CompilerLauncher/test.ispc @@ -0,0 +1,4 @@ + +float func(float a, float b) { + return a + b / 2.; +} |