We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7646a94 + ba0db37 commit 94efa8cCopy full SHA for 94efa8c
CMakeLists.txt
@@ -150,10 +150,10 @@ set(balancer_default "TreeLB" CACHE STRING "Charm++ load balancer to use by defa
150
#TODO we should figure our reasonale defaults and/or provide instructions in the docs
151
if (balance)
152
foreach(BALANCER IN LISTS balancer_included)
153
- string(APPEND Cello_TARGET_LINK_OPTIONS " -module ${BALANCER}")
+ list(APPEND Cello_TARGET_LINK_OPTIONS "SHELL:-module ${BALANCER}")
154
endforeach()
155
foreach(BALANCER IN LISTS balancer_default)
156
- string(APPEND Cello_TARGET_LINK_OPTIONS " -balancer ${BALANCER}")
+ list(APPEND Cello_TARGET_LINK_OPTIONS "SHELL:-balancer ${BALANCER}")
157
158
endif()
159
0 commit comments