File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -923,16 +923,14 @@ configure_file(src/scripts/testrun bin/ COPYONLY)
923923# Charm++ libraries
924924
925925# CkLoop
926- #[[
927926set (ckloop-cxx-files src/libs/ck-libs/ckloop/CkLoop.C)
928- # set(ckloop-h-files src/libs/ck-libs/ckloop/CkLambda.h src/libs/ck-libs/ckloop/CkLoopAPI.h src/libs/ck-libs/ckloop/CkLoop.h)
929- # add_library(moduleCkLoop ${ckloop-cxx-files} ${ckloop-h-files} ${CMAKE_BINARY_DIR}/include/CkLoop.decl.h)
930- # add_dependencies(moduleCkLoop ck)
927+ set (ckloop-h-files src/libs/ck-libs/ckloop/CkLambda.h src/libs/ck-libs/ckloop/CkLoopAPI.h src/libs/ck-libs/ckloop/CkLoop.h)
928+ add_library (moduleCkLoop ${ckloop-cxx-files} ${ckloop-h-files} ${CMAKE_BINARY_DIR} /include/CkLoop.decl.h )
929+ add_dependencies (moduleCkLoop ck )
931930
932- #foreach(file ${ckloop-h-files})
933- #configure_file(${file} ${CMAKE_BINARY_DIR}/include COPYONLY)
934- #endforeach(file)
935- ]]
931+ foreach (file ${ckloop-h-files})
932+ configure_file (${file} ${CMAKE_BINARY_DIR} /include COPYONLY )
933+ endforeach (file )
936934
937935# allGather
938936configure_file (src/libs/ck-libs/allGather/allGather.h ${CMAKE_BINARY_DIR} /include COPYONLY )
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ typedef LONG taskq_idx;
1313#else
1414typedef int taskq_idx ;
1515#endif
16+ #include "converse.h"
1617typedef struct TaskQueueStruct {
1718 taskq_idx head ; // This pointer indicates the first task in the queue
1819 taskq_idx tail ; // The tail indicates the array element next to the last available task in the queue. So, if head == tail, the queue is empty
You can’t perform that action at this time.
0 commit comments