Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VTK
VTK
Commits
044b2613
Commit
044b2613
authored
May 22, 2009
by
Nathan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
STYLE: Changed the names to avoid collision problems
parent
f6899742
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
Utilities/mrmpi/CMakeLists.txt
Utilities/mrmpi/CMakeLists.txt
+1
-1
Utilities/mrmpi/mpistubs/CMakeLists.txt
Utilities/mrmpi/mpistubs/CMakeLists.txt
+4
-4
Utilities/mrmpi/src/CMakeLists.txt
Utilities/mrmpi/src/CMakeLists.txt
+3
-3
No files found.
Utilities/mrmpi/CMakeLists.txt
View file @
044b2613
...
...
@@ -15,7 +15,7 @@ IF (VTK_USE_MPI)
ENDIF
(
MPI_EXTRA_LIBRARY
)
ENDIF
(
MPI_LIBRARIES
)
ELSE
(
VTK_USE_MPI
)
SET
(
mrmpi_LIBS mpi
)
SET
(
mrmpi_LIBS mpi
stubs
)
INCLUDE_DIRECTORIES
(
mrmpi
${
VTK_SOURCE_DIR
}
/Utilities/mrmpi/mpistubs
)
ADD_SUBDIRECTORY
(
mpistubs
)
ENDIF
(
VTK_USE_MPI
)
...
...
Utilities/mrmpi/mpistubs/CMakeLists.txt
View file @
044b2613
SET
(
mpi_SOURCES mpi.cpp
)
SET
(
mpi
stubs
_SOURCES mpi.cpp
)
ADD_LIBRARY
(
mpi
${
mpi_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
mpi vtksys
)
ADD_LIBRARY
(
mpi
stubs
${
mpi
stubs
_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
mpi
stubs
vtksys
)
IF
(
VTK_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
mpi PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
SET_TARGET_PROPERTIES
(
mpi
stubs
PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
ENDIF
(
VTK_LIBRARY_PROPERTIES
)
Utilities/mrmpi/src/CMakeLists.txt
View file @
044b2613
...
...
@@ -7,8 +7,8 @@ SET (mrmpi_SOURCES
memory.cpp
error.cpp
)
ADD_LIBRARY
(
mrmpi
${
mrmpi_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
mrmpi
${
mrmpi_LIBS
}
)
ADD_LIBRARY
(
MapReduceMPI
${
mrmpi_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
MapReduceMPI
${
mrmpi_LIBS
}
)
IF
(
VTK_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
mrmpi
PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
SET_TARGET_PROPERTIES
(
MapReduceMPI
PROPERTIES
${
VTK_LIBRARY_PROPERTIES
}
)
ENDIF
(
VTK_LIBRARY_PROPERTIES
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment