Skip to content
H. Joe Lee edited this page Apr 22, 2023 · 6 revisions

CMake

Pick either shared or static. You can't have both in Xcode.

# static
cmake -G Xcode  -DCMAKE_BUILD_TYPE:STRING=Debug -DBUILD_SHARED_LIBS:BOOL=OFF ..
# shared
cmake -G Xcode  -DCMAKE_BUILD_TYPE:STRING=Debug -DBUILD_SHARED_LIBS:BOOL=ON -DBUILD_STATIC_LIBS:BOOL=OFF .. 

Parallel

You can't select mpich mpirun.

testpar directory has its own Xcodeproject. It is not visible from top level project.

Clone this wiki locally