2012-05-05 04:30:03 +08:00
|
|
|
if (CLOOG_FOUND)
|
|
|
|
set(CLOOG_FILES
|
|
|
|
Cloog.cpp
|
|
|
|
CodeGeneration.cpp)
|
|
|
|
endif (CLOOG_FOUND)
|
2012-05-08 00:20:07 +08:00
|
|
|
|
2012-10-22 05:48:21 +08:00
|
|
|
set(ISL_CODEGEN_FILES
|
|
|
|
IslAst.cpp
|
|
|
|
IslCodeGeneration.cpp)
|
2012-05-08 00:20:07 +08:00
|
|
|
|
2012-08-03 20:50:07 +08:00
|
|
|
if (GPU_CODEGEN)
|
|
|
|
set (GPGPU_CODEGEN_FILES
|
|
|
|
PTXGenerator.cpp)
|
|
|
|
endif (GPU_CODEGEN)
|
|
|
|
|
2012-03-30 16:46:18 +08:00
|
|
|
add_polly_library(PollyCodeGen
|
2012-04-25 21:16:49 +08:00
|
|
|
BlockGenerators.cpp
|
2012-05-05 04:30:03 +08:00
|
|
|
${CLOOG_FILES}
|
2012-05-08 00:20:07 +08:00
|
|
|
${ISL_CODEGEN_FILES}
|
2012-03-30 16:46:18 +08:00
|
|
|
LoopGenerators.cpp
|
2012-05-29 17:11:54 +08:00
|
|
|
Utils.cpp
|
2012-08-03 20:50:07 +08:00
|
|
|
${GPGPU_CODEGEN_FILES}
|
2012-03-30 16:46:18 +08:00
|
|
|
)
|