ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/CMakeLists.txt
Revision: 1707
Committed: Mon May 14 16:46:02 2012 UTC (13 years ago) by gezelter
Content type: text/plain
File size: 23702 byte(s)
Log Message:
Use the static version of the qhull library.

File Contents

# Content
1 # Top level cmake script for OpenMD.
2 project(OpenMD CXX)
3 cmake_minimum_required(VERSION 2.8.5)
4
5 SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
6
7 if (NOT CMAKE_BUILD_TYPE)
8 set(CMAKE_BUILD_TYPE "Release")
9 endif()
10
11 find_package(MPI)
12 if (NOT MPI_CXX_FOUND)
13 message(STATUS "========== OpenMD Parallel Information ==========")
14 message(STATUS )
15 message(STATUS "No MPI compiler found. Perhaps you want to set one explicitly?")
16 message(STATUS "To override the default compiler, set the environment variable")
17 message(STATUS " export CXX=/full/path/to/mpic++")
18 message(STATUS "in bash or ksh or sh. In csh or tcsh, use:")
19 message(STATUS " setenv CXX /full/path/to/mpic++")
20 message(STATUS "before running the cmake command.")
21 message(STATUS )
22 message(STATUS "=================================================")
23 endif()
24 IF ( MPI_CXX_FOUND )
25 INCLUDE_DIRECTORIES(${MPI_CXX_INCLUDE_PATH})
26 ENDIF()
27
28 include(CheckCXXCompilerFlag)
29 include(CheckIncludeFileCXX)
30 include(CheckCXXSymbolExists)
31
32 # OpenMD version number.
33 set (VERSION_MAJOR "2")
34 set (VERSION_MINOR "0")
35 set (VERSION_TINY "0")
36 option(SINGLE_PRECISION "Build Single precision (float) version" OFF)
37
38 IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
39 SET(CMAKE_INSTALL_PREFIX
40 "/usr/local/openmd" CACHE PATH "OpenMD install prefix" FORCE
41 )
42 ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
43
44 # ---------- Setup output Directories -------------------------
45 SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY
46 ${PROJECT_BINARY_DIR}/lib
47 CACHE PATH
48 "Single directory for all shared libraries"
49 )
50 # --------- Setup the Executable output Directory -------------
51 SET (CMAKE_RUNTIME_OUTPUT_DIRECTORY
52 ${PROJECT_BINARY_DIR}/bin
53 CACHE PATH
54 "Single directory for all Executables."
55 )
56 # --------- Setup the static library directory -------------
57 SET (CMAKE_ARCHIVE_OUTPUT_DIRECTORY
58 ${PROJECT_BINARY_DIR}/lib
59 CACHE PATH
60 "Single directory for all static libraries."
61 )
62
63 FIND_PACKAGE(Subversion)
64 IF ( Subversion_FOUND AND EXISTS ${PROJECT_SOURCE_DIR}/.svn )
65 Subversion_WC_INFO(${PROJECT_SOURCE_DIR} Project)
66 MESSAGE(STATUS "Current revision is ${Project_WC_REVISION}")
67 Subversion_WC_LOG(${PROJECT_SOURCE_DIR} Project)
68 SET(SVN_REV ${Project_WC_REVISION})
69 ADD_DEFINITIONS( -DSVN_REV=${Project_WC_REVISION} )
70 SET(GENERATELOGS "${PROJECT_SOURCE_DIR}/doc/svn2cl")
71 ADD_CUSTOM_TARGET(ChangeLog
72 COMMAND ${GENERATELOGS} "--group-by-day" "--include-rev"
73 "--linelen=78" "--output=${PROJECT_BINARY_DIR}/ChangeLog" "${PROJECT_SOURCE_DIR}"
74 )
75 ENDIF()
76
77 check_include_file_cxx(conio.h HAVE_CONIO_H)
78 check_cxx_symbol_exists(strncasecmp "string.h" HAVE_STRNCASECMP)
79
80 # Optional libraries: If we can find these, we will build with them
81 # Look for OpenBabel libraries
82 find_package(OpenBabel2)
83 IF(OPENBABEL2_FOUND)
84 SET(USE_OPENBABEL)
85 include_directories(${OPENBABEL2_INCLUDE_DIR})
86 # link libraries are added only for targets that need them.
87 ELSE(OPENBABEL2_FOUND)
88 MESSAGE(STATUS "No OpenBabel found - will not build atom2md")
89 ENDIF(OPENBABEL2_FOUND)
90
91 #Look for QHULL Libraries
92 set(QHULL_USE_STATIC 1)
93 find_package(Qhull)
94 IF(QHULL_FOUND)
95 SET(HAVE_QHULL 1)
96 include_directories(${QHULL_INCLUDE_DIR})
97 LINK_LIBRARIES(${QHULL_LIBRARIES})
98 ELSE(QHULL_FOUND)
99 MESSAGE(STATUS "No Qhull found - will be missing some features")
100 ENDIF(QHULL_FOUND)
101
102 # zlib stuff
103 find_package(ZLIB)
104 if(ZLIB_FOUND)
105 SET(HAVE_LIBZ 1)
106 add_definitions(-DHAVE_LIBZ)
107 include_directories(${ZLIB_INCLUDE_DIR})
108 LINK_LIBRARIES(${ZLIB_LIBRARIES})
109 ELSE(ZLIB_FOUND)
110 MESSAGE(STATUS "No zlib found - will be missing compressed dump files")
111 endif(ZLIB_FOUND)
112
113 #FFTW3
114 IF(SINGLE_PRECISION)
115 find_package(FFTW3 COMPONENTS single)
116 else()
117 find_package(FFTW3 COMPONENTS double)
118 endif(SINGLE_PRECISION)
119 if (FFTW3_FOUND)
120 include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${FFTW3_INCLUDE_DIR})
121 SET(HAVE_LIBFFTW 1)
122 SET(HAVE_FFTW3_H 1)
123 INCLUDE_DIRECTORIES(${FFTW3_INCLUDE_DIR})
124 LINK_LIBRARIES(${FFTW3_LIBRARIES})
125 ELSE(FFTW3_FOUND)
126 MESSAGE(STATUS "No fftw3 found - will be missing some analysis modules")
127 endif (FFTW3_FOUND)
128
129
130 # add a target to generate API documentation with Doxygen
131 find_package(Doxygen)
132 if(DOXYGEN_FOUND)
133 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/doc/Doxyfile" @ONLY)
134 add_custom_target(doc
135 ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/doc/Doxyfile"
136 WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/doc"
137 COMMENT "Generating API documentation with Doxygen" VERBATIM
138 )
139 endif(DOXYGEN_FOUND)
140
141 FIND_PACKAGE(Perl)
142 IF(PERL_FOUND)
143 SET(PERL ${PERL_EXECUTABLE})
144 ELSE(PERL_FOUND)
145 MESSAGE(STATUS "Failed to find perl - some scripts will not be made")
146 ENDIF(PERL_FOUND)
147
148 SET(PERL_INSTALLDIRS "site" CACHE STRING "Perl installation
149 locations")
150
151 FIND_PACKAGE(PythonInterp)
152 IF(PYTHON_EXECUTABLE)
153 SET(PYTHON ${PYTHON_EXECUTABLE})
154 ELSE(PYTHON_EXECUTABLE)
155 MESSAGE(STATUS "Failed to find python - some scripts will not be made")
156 ENDIF(PYTHON_EXECUTABLE)
157
158 configure_file (
159 "${PROJECT_SOURCE_DIR}/src/config.h.cmake"
160 "${PROJECT_BINARY_DIR}/config.h"
161 )
162 include_directories("${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}/src")
163
164 #Add executables for build
165 set (PROGRAMS
166 openmd
167 openmd_MPI
168 Dump2XYZ
169 simpleBuilder
170 StaticProps
171 DynamicProps
172 randomBuilder
173 nanoparticleBuilder
174 thermalizer
175 atom2md
176 Hydro)
177
178 set(SOURCE
179 src/antlr/ANTLRUtil.cpp
180 src/antlr/ASTFactory.cpp
181 src/antlr/ASTNULLType.cpp
182 src/antlr/ASTRefCount.cpp
183 src/antlr/BaseAST.cpp
184 src/antlr/BitSet.cpp
185 src/antlr/CharBuffer.cpp
186 src/antlr/CharScanner.cpp
187 src/antlr/CommonAST.cpp
188 src/antlr/CommonASTWithHiddenTokens.cpp
189 src/antlr/CommonHiddenStreamToken.cpp
190 src/antlr/CommonToken.cpp
191 src/antlr/InputBuffer.cpp
192 src/antlr/LLkParser.cpp
193 src/antlr/MismatchedCharException.cpp
194 src/antlr/MismatchedTokenException.cpp
195 src/antlr/NoViableAltException.cpp
196 src/antlr/NoViableAltForCharException.cpp
197 src/antlr/Parser.cpp
198 src/antlr/RecognitionException.cpp
199 src/antlr/String.cpp
200 src/antlr/Token.cpp
201 src/antlr/TokenBuffer.cpp
202 src/antlr/TokenRefCount.cpp
203 src/antlr/TokenStreamBasicFilter.cpp
204 src/antlr/TokenStreamHiddenTokenFilter.cpp
205 src/antlr/TokenStreamRewriteEngine.cpp
206 src/antlr/TokenStreamSelector.cpp
207 src/antlr/TreeParser.cpp
208 src/brains/BlockSnapshotManager.cpp
209 src/brains/DataStorage.cpp
210 src/brains/MoleculeCreator.cpp
211 src/brains/PairList.cpp
212 src/brains/Register.cpp
213 src/brains/SimSnapshotManager.cpp
214 src/brains/Snapshot.cpp
215 src/brains/Stats.cpp
216 src/constraints/Rattle.cpp
217 src/hydrodynamics/Ellipsoid.cpp
218 src/hydrodynamics/HydroProp.cpp
219 src/hydrodynamics/Sphere.cpp
220 src/integrators/DLM.cpp
221 src/integrators/Integrator.cpp
222 src/integrators/IntegratorFactory.cpp
223 src/integrators/LangevinDynamics.cpp
224 src/integrators/LDForceManager.cpp
225 src/integrators/NgammaT.cpp
226 src/integrators/NPAT.cpp
227 src/integrators/NPrT.cpp
228 src/integrators/NPT.cpp
229 src/integrators/NPTf.cpp
230 src/integrators/NPTi.cpp
231 src/integrators/NPTsz.cpp
232 src/integrators/NPTxyz.cpp
233 src/integrators/NVE.cpp
234 src/integrators/NVT.cpp
235 src/integrators/VelocityVerletIntegrator.cpp
236 src/io/AtomTypesSectionParser.cpp
237 src/io/BaseAtomTypesSectionParser.cpp
238 src/io/BendTypesSectionParser.cpp
239 src/io/BondTypesSectionParser.cpp
240 src/io/ChargeAtomTypesSectionParser.cpp
241 src/io/DirectionalAtomTypesSectionParser.cpp
242 src/io/EAMAtomTypesSectionParser.cpp
243 src/io/ForceFieldOptions.cpp
244 src/io/GayBerneAtomTypesSectionParser.cpp
245 src/io/Globals.cpp
246 src/io/gzstream.cpp
247 src/io/InversionTypesSectionParser.cpp
248 src/io/LennardJonesAtomTypesSectionParser.cpp
249 src/io/MultipoleAtomTypesSectionParser.cpp
250 src/io/NonBondedInteractionsSectionParser.cpp
251 src/io/OptionSectionParser.cpp
252 src/io/ParamConstraint.cpp
253 src/io/SCAtomTypesSectionParser.cpp
254 src/io/SectionParser.cpp
255 src/io/SectionParserManager.cpp
256 src/io/ShapeAtomTypesSectionParser.cpp
257 src/io/StickyAtomTypesSectionParser.cpp
258 src/io/StickyPowerAtomTypesSectionParser.cpp
259 src/io/TorsionTypesSectionParser.cpp
260 src/io/ZConsReader.cpp
261 src/lattice/CubicLattice.cpp
262 src/lattice/FCCLattice.cpp
263 src/lattice/Lattice.cpp
264 src/lattice/LatticeFactory.cpp
265 src/lattice/shapedLattice.cpp
266 src/math/ChebyshevT.cpp
267 src/math/ChebyshevU.cpp
268 src/math/CubicSpline.cpp
269 src/math/LegendrePolynomial.cpp
270 src/math/RealSphericalHarmonic.cpp
271 src/math/RMSD.cpp
272 src/math/SeqRandNumGen.cpp
273 src/math/SphericalHarmonic.cpp
274 src/math/Wigner3jm.cpp
275 src/mdParser/FilenameObserver.cpp
276 src/mdParser/MDLexer.cpp
277 src/mdParser/MDParser.cpp
278 src/mdParser/MDTreeParser.cpp
279 src/minimizers/MinimizerFactory.cpp
280 src/minimizers/MinimizerParameterSet.cpp
281 src/nonbonded/EAM.cpp
282 src/nonbonded/Electrostatic.cpp
283 src/nonbonded/GB.cpp
284 src/nonbonded/InteractionManager.cpp
285 src/nonbonded/LJ.cpp
286 src/nonbonded/MAW.cpp
287 src/nonbonded/Morse.cpp
288 src/nonbonded/RepulsivePower.cpp
289 src/nonbonded/SC.cpp
290 src/nonbonded/Sticky.cpp
291 src/nonbonded/SwitchingFunction.cpp
292 src/primitives/Atom.cpp
293 src/primitives/Bend.cpp
294 src/primitives/DirectionalAtom.cpp
295 src/primitives/GhostBend.cpp
296 src/primitives/GhostTorsion.cpp
297 src/primitives/Inversion.cpp
298 src/primitives/Molecule.cpp
299 src/primitives/RigidBody.cpp
300 src/primitives/StuntDouble.cpp
301 src/primitives/Torsion.cpp
302 src/primitives/UreyBradleyBend.cpp
303 src/restraints/MolecularRestraint.cpp
304 src/restraints/ObjectRestraint.cpp
305 src/selection/DistanceFinder.cpp
306 src/selection/HullFinder.cpp
307 src/selection/IndexFinder.cpp
308 src/selection/NameFinder.cpp
309 src/selection/SelectionCompiler.cpp
310 src/selection/SelectionEvaluator.cpp
311 src/selection/SelectionManager.cpp
312 src/selection/SelectionToken.cpp
313 src/selection/TokenMap.cpp
314 src/types/AtomStamp.cpp
315 src/types/AtomType.cpp
316 src/types/BendStamp.cpp
317 src/types/BondStamp.cpp
318 src/types/CharmmTorsionType.cpp
319 src/types/Component.cpp
320 src/types/CutoffGroupStamp.cpp
321 src/types/DirectionalAtomType.cpp
322 src/types/FragmentStamp.cpp
323 src/types/ImproperCosineInversionType.cpp
324 src/types/InversionStamp.cpp
325 src/types/MoleculeStamp.cpp
326 src/types/NonBondedInteractionType.cpp
327 src/types/RestraintStamp.cpp
328 src/types/RigidBodyStamp.cpp
329 src/types/ShapeAtomType.cpp
330 src/types/TorsionStamp.cpp
331 src/types/ZconsStamp.cpp
332 src/UseTheForce/Amber_FF.cpp
333 src/UseTheForce/CLAYFF.cpp
334 src/UseTheForce/DUFF.cpp
335 src/UseTheForce/EADM_FF.cpp
336 src/UseTheForce/EAM_FF.cpp
337 src/UseTheForce/ForceField.cpp
338 src/UseTheForce/ForceFieldFactory.cpp
339 src/UseTheForce/MnM_FF.cpp
340 src/UseTheForce/SC_FF.cpp
341 src/UseTheForce/SHAPES_FF.cpp
342 src/utils/ElementsTable.cpp
343 src/utils/MoLocator.cpp
344 src/utils/OpenMDBitSet.cpp
345 src/utils/PropertyMap.cpp
346 src/utils/StringTokenizer.cpp
347 src/utils/StringUtils.cpp
348 src/utils/Trim.cpp
349 src/utils/Utility.cpp
350 src/utils/wildcards.cpp
351 src/visitors/AtomNameVisitor.cpp
352 src/visitors/AtomVisitor.cpp
353 src/visitors/CompositeVisitor.cpp
354 src/visitors/LipidTransVisitor.cpp
355 src/visitors/OtherVisitor.cpp
356 src/visitors/ReplacementVisitor.cpp
357 src/visitors/RigidBodyVisitor.cpp
358 src/visitors/ZconsVisitor.cpp
359 )
360
361 set( PARALLEL_SOURCE
362 src/brains/ForceManager.cpp
363 src/brains/SimCreator.cpp
364 src/brains/SimInfo.cpp
365 src/brains/Thermo.cpp
366 src/constraints/ZconstraintForceManager.cpp
367 src/integrators/RNEMD.cpp
368 src/integrators/Velocitizer.cpp
369 src/io/DumpReader.cpp
370 src/io/DumpWriter.cpp
371 src/io/RestReader.cpp
372 src/io/RestWriter.cpp
373 src/io/StatWriter.cpp
374 src/io/ZConsWriter.cpp
375 src/io/ifstrstream.cpp
376 src/math/ParallelRandNumGen.cpp
377 src/minimizers/CGFamilyMinimizer.cpp
378 src/minimizers/Minimizer.cpp
379 src/minimizers/PRCG.cpp
380 src/minimizers/SDMinimizer.cpp
381 src/parallel/ForceDecomposition.cpp
382 src/parallel/ForceMatrixDecomposition.cpp
383 src/restraints/RestraintForceManager.cpp
384 src/restraints/ThermoIntegrationForceManager.cpp
385 src/utils/ProgressBar.cpp
386 src/utils/simError.cpp
387 )
388
389 IF(QHULL_FOUND)
390 set(QHULL_SOURCE
391 src/integrators/LangevinHullDynamics.cpp
392 src/math/Triangle.cpp
393 )
394 set(QHULL_PARALLEL_SOURCE
395 src/integrators/LangevinHullForceManager.cpp
396 src/math/ConvexHull.cpp
397 src/math/AlphaHull.cpp
398 )
399 ENDIF(QHULL_FOUND)
400
401 add_library(openmd_core STATIC ${SOURCE} ${QHULL_SOURCE} )
402 add_library(openmd_single STATIC ${PARALLEL_SOURCE} ${QHULL_PARALLEL_SOURCE} )
403
404 IF(MPI_FOUND)
405 add_library(openmd_parallel STATIC ${PARALLEL_SOURCE} ${QHULL_PARALLEL_SOURCE} )
406 set_target_properties(openmd_parallel PROPERTIES
407 COMPILE_DEFINITIONS IS_MPI
408 )
409 ENDIF(MPI_FOUND)
410
411 add_executable(openmd src/applications/openmd/openmd.cpp)
412 target_link_libraries(openmd openmd_single openmd_core openmd_single openmd_core)
413
414 if (MPI_FOUND)
415 add_executable(openmd_MPI src/applications/openmd/openmd.cpp)
416 set_target_properties(openmd_MPI PROPERTIES
417 COMPILE_DEFINITIONS IS_MPI
418 )
419 target_link_libraries(openmd_MPI openmd_parallel openmd_core openmd_parallel openmd_core)
420 INSTALL(TARGETS
421 openmd_parallel openmd_MPI
422 RUNTIME DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
423 LIBRARY DESTINATION lib PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
424 ARCHIVE DESTINATION lib PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
425 )
426 ENDIF (MPI_FOUND)
427
428 set (DUMP2XYZSOURCE
429 src/applications/dump2Xyz/Dump2XYZ.cpp
430 src/applications/dump2Xyz/Dump2XYZCmd.cpp
431 )
432
433 set (DYNAMICPROPSSOURCE
434 src/applications/dynamicProps/ActionCorrFunc.cpp
435 src/applications/dynamicProps/CrossTimeCorrFunc.cpp
436 src/applications/dynamicProps/DipoleCorrFunc.cpp
437 src/applications/dynamicProps/DirectionalRCorrFunc.cpp
438 src/applications/dynamicProps/DynamicProps.cpp
439 src/applications/dynamicProps/EnergyCorrFunc.cpp
440 src/applications/dynamicProps/FrameTimeCorrFunc.cpp
441 src/applications/dynamicProps/LegendreCorrFunc.cpp
442 src/applications/dynamicProps/MomentumCorrFunc.cpp
443 src/applications/dynamicProps/ParticleTimeCorrFunc.cpp
444 src/applications/dynamicProps/RadialRCorrFunc.cpp
445 src/applications/dynamicProps/RCorrFunc.cpp
446 src/applications/dynamicProps/StressCorrFunc.cpp
447 src/applications/dynamicProps/SystemDipoleCorrFunc.cpp
448 src/applications/dynamicProps/ThetaCorrFunc.cpp
449 src/applications/dynamicProps/TimeCorrFunc.cpp
450 src/applications/dynamicProps/VCorrFunc.cpp
451 src/applications/dynamicProps/DynamicPropsCmd.cpp
452 )
453
454 set (HYDROSOURCE
455 src/applications/hydrodynamics/AnalyticalModel.cpp
456 src/applications/hydrodynamics/ApproximationModel.cpp
457 src/applications/hydrodynamics/BeadModel.cpp
458 src/applications/hydrodynamics/CompositeShape.cpp
459 src/applications/hydrodynamics/Hydro.cpp
460 src/applications/hydrodynamics/HydrodynamicsModel.cpp
461 src/applications/hydrodynamics/HydrodynamicsModelFactory.cpp
462 src/applications/hydrodynamics/RoughShell.cpp
463 src/applications/hydrodynamics/ShapeBuilder.cpp
464 src/applications/hydrodynamics/HydroCmd.cpp
465 )
466
467 set (STATICPROPSSOURCE
468 src/applications/staticProps/AngleR.cpp
469 src/applications/staticProps/BondAngleDistribution.cpp
470 src/applications/staticProps/BondOrderParameter.cpp
471 src/applications/staticProps/BOPofR.cpp
472 src/applications/staticProps/DensityPlot.cpp
473 src/applications/staticProps/GofAngle2.cpp
474 src/applications/staticProps/GofR.cpp
475 src/applications/staticProps/GofRAngle.cpp
476 src/applications/staticProps/GofRZ.cpp
477 src/applications/staticProps/GofXyz.cpp
478 src/applications/staticProps/GofZ.cpp
479 src/applications/staticProps/Hxy.cpp
480 src/applications/staticProps/NanoLength.cpp
481 src/applications/staticProps/NanoVolume.cpp
482 src/applications/staticProps/ObjectCount.cpp
483 src/applications/staticProps/P2OrderParameter.cpp
484 src/applications/staticProps/pAngle.cpp
485 src/applications/staticProps/RadialDistrFunc.cpp
486 src/applications/staticProps/RhoR.cpp
487 src/applications/staticProps/RhoZ.cpp
488 src/applications/staticProps/RippleOP.cpp
489 src/applications/staticProps/SCDOrderParameter.cpp
490 src/applications/staticProps/StaticProps.cpp
491 src/applications/staticProps/TetrahedralityParam.cpp
492 src/applications/staticProps/TwoDGofR.cpp
493 src/applications/staticProps/StaticPropsCmd.cpp
494 )
495
496 set (NANOPARTICLEBUILDERSOURCE
497 src/applications/nanoparticleBuilder/nanoparticleBuilder.cpp
498 src/applications/nanoparticleBuilder/shapedLatticeSpherical.cpp
499 src/applications/nanoparticleBuilder/nanoparticleBuilderCmd.cpp
500 )
501
502 set (NANORODBUILDERSOURCE
503 src/applications/nanoparticleBuilder/nanorodBuilder.cpp
504 src/applications/nanoparticleBuilder/shapedLatticeRod.cpp
505 src/applications/nanoparticleBuilder/nanorodBuilderCmd.cpp
506 )
507
508 set (NANOROD_PENTBUILDERSOURCE
509 src/applications/nanoparticleBuilder/nanorod_pentBuilder.cpp
510 src/applications/nanoparticleBuilder/nanorod_pentBuilderCmd.cpp
511 src/applications/nanoparticleBuilder/shapedLatticePentRod.cpp
512 )
513
514 set (RANDOMBUILDERSOURCE
515 src/applications/randomBuilder/randomBuilder.cpp
516 src/applications/randomBuilder/randomBuilderCmd.cpp
517 )
518
519 set(SIMPLEBUILDERSOURCE
520 src/applications/simpleBuilder/simpleBuilder.cpp
521 src/applications/simpleBuilder/simpleBuilderCmd.cpp
522 )
523
524 set(THERMALIZERSOURCE
525 src/applications/thermalizer/thermalizer.cpp
526 src/applications/thermalizer/thermalizerCmd.cpp
527 )
528
529 add_executable(Dump2XYZ ${DUMP2XYZSOURCE})
530 target_link_libraries(Dump2XYZ openmd_single openmd_core openmd_single openmd_core)
531 add_executable(DynamicProps ${DYNAMICPROPSSOURCE})
532 target_link_libraries(DynamicProps openmd_single openmd_core openmd_single openmd_core)
533 add_executable(Hydro ${HYDROSOURCE})
534 target_link_libraries(Hydro openmd_single openmd_core openmd_single openmd_core)
535 add_executable(StaticProps ${STATICPROPSSOURCE})
536 target_link_libraries(StaticProps openmd_single openmd_core openmd_single openmd_core)
537 add_executable(nanoparticleBuilder ${NANOPARTICLEBUILDERSOURCE})
538 target_link_libraries(nanoparticleBuilder openmd_single openmd_core openmd_single openmd_core)
539 add_executable(nanorodBuilder ${NANORODBUILDERSOURCE})
540 target_link_libraries(nanorodBuilder openmd_single openmd_core openmd_single openmd_core)
541 add_executable(nanorod_pentBuilder ${NANOROD_PENTBUILDERSOURCE})
542 target_link_libraries(nanorod_pentBuilder openmd_single openmd_core openmd_single openmd_core)
543 add_executable(randomBuilder ${RANDOMBUILDERSOURCE})
544 target_link_libraries(randomBuilder openmd_single openmd_core openmd_single openmd_core)
545 add_executable(simpleBuilder ${SIMPLEBUILDERSOURCE})
546 target_link_libraries(simpleBuilder openmd_single openmd_core openmd_single openmd_core)
547 add_executable(thermalizer ${THERMALIZERSOURCE})
548 target_link_libraries(thermalizer openmd_single openmd_core openmd_single openmd_core)
549
550 if (OPENBABEL2_FOUND)
551 set (ATOM2MDSOURCE
552 src/applications/atom2md/atom2md.cpp
553 src/applications/atom2md/openmdformat.cpp
554 )
555 add_executable(atom2md ${ATOM2MDSOURCE})
556 target_link_libraries(atom2md openmd_single openmd_core openmd_single openmd_core ${OPENBABEL2_LIBRARIES})
557 INSTALL(TARGETS atom2md RUNTIME DESTINATION bin
558 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
559 ENDIF (OPENBABEL2_FOUND)
560
561
562 set(PY_FILES
563 src/applications/hydrodynamics/diffExplainer
564 src/applications/utilities/affineScale
565 src/applications/utilities/dumpConverter
566 src/applications/utilities/md-solvator
567 src/applications/utilities/md2md
568 src/applications/utilities/mdSplit
569 src/applications/utilities/principalAxisCalculator
570 src/applications/utilities/stat2visco
571 src/applications/utilities/waterRotator
572 src/applications/utilities/waterReplacer
573 )
574
575 IF(PYTHON_EXECUTABLE)
576 foreach(PY_FILE ${PY_FILES})
577 GET_FILENAME_COMPONENT(filename "${PY_FILE}" NAME)
578 CONFIGURE_FILE(${PY_FILE}
579 "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${filename}" @ONLY)
580 INSTALL(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${filename}"
581 DESTINATION bin
582 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
583 endforeach(PY_FILE)
584 ENDIF(PYTHON_EXECUTABLE)
585
586 set(PERL_FILES
587 src/applications/utilities/solvator
588 src/applications/utilities/waterBoxer
589 )
590
591 IF(PERL_FOUND)
592 foreach(PERL_FILE ${PERL_FILES})
593 GET_FILENAME_COMPONENT(filename "${PERL_FILE}" NAME)
594 configure_file(${PERL_FILE} "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${filename}" @ONLY)
595 INSTALL(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${filename}"
596 DESTINATION bin
597 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
598
599 endforeach(PERL_FILE)
600 ENDIF(PERL_FOUND)
601
602 INSTALL(FILES AUTHORS LICENSE README INSTALL DESTINATION .
603 PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
604 INSTALL(TARGETS
605 openmd_core
606 openmd_single
607 openmd
608 Dump2XYZ
609 simpleBuilder
610 StaticProps
611 DynamicProps
612 randomBuilder
613 nanoparticleBuilder
614 thermalizer
615 Hydro
616 RUNTIME DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
617 LIBRARY DESTINATION lib PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
618 ARCHIVE DESTINATION lib PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
619 )
620
621 install(DIRECTORY forceFields/
622 DESTINATION forceFields
623 DIRECTORY_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
624 PATTERN ".svn" EXCLUDE
625 PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
626 install(DIRECTORY samples/
627 DESTINATION samples
628 DIRECTORY_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
629 PATTERN ".svn" EXCLUDE
630 PATTERN "*.dump" EXCLUDE
631 PATTERN "*.stat" EXCLUDE
632 PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
633 INSTALL(FILES "${CMAKE_CURRENT_SOURCE_DIR}/doc/OpenMDmanual.pdf"
634 DESTINATION doc
635 PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
636
637 message( STATUS)
638 message( STATUS "========== OpenMD Build Information ==========")
639 message( STATUS "Current revision ........... = ${SVN_REV}")
640 message( STATUS "CMAKE_SYSTEM ............... = ${CMAKE_SYSTEM}")
641 message( STATUS "==============================================")
642 message( STATUS "CMAKE_BUILD_TYPE ........... = ${CMAKE_BUILD_TYPE}")
643 message( STATUS "CMAKE_INSTALL_PREFIX ....... = ${CMAKE_INSTALL_PREFIX}")
644 message( STATUS "Build as SINGLE_PRECISION .. = ${SINGLE_PRECISION}")
645 message( STATUS "CMAKE_CXX_COMPILER ......... = ${CMAKE_CXX_COMPILER}")
646 message( STATUS "MPI_CXX_COMPILER ........... = ${MPI_CXX_COMPILER}")
647 message( STATUS "MPI_CXX_INCLUDE_PATH ....... = ${MPI_CXX_INCLUDE_PATH}")
648 message( STATUS "MPI_CXX_LIBRARIES .......... = ${MPI_CXX_LIBRARIES}")
649 message( STATUS "OPENBABEL2_ROOT ............ = ${OPENBABEL2_ROOT}")
650 message( STATUS "OPENBABEL2_INCLUDE_DIR ..... = ${OPENBABEL2_INCLUDE_DIR}")
651 message( STATUS "OPENBABEL2_LIBRARIES ....... = ${OPENBABEL2_LIBRARIES}")
652 message( STATUS "QHULL_ROOT ................. = ${QHULL_ROOT}")
653 message( STATUS "QHULL_INCLUDE_DIR .......... = ${QHULL_INCLUDE_DIR}")
654 message( STATUS "QHULL_LIBRARIES ............ = ${QHULL_LIBRARIES}")
655 message( STATUS "ZLIB_ROOT .................. = ${ZLIB_ROOT}")
656 message( STATUS "ZLIB_INCLUDE_DIR ........... = ${ZLIB_INCLUDE_DIR}")
657 message( STATUS "ZLIB_LIBRARIES ............. = ${ZLIB_LIBRARIES}")
658 message( STATUS "FFTW3_ROOT ................. = ${FFTW3_ROOT}")
659 message( STATUS "FFTW3_INCLUDE_DIR .......... = ${FFTW3_INCLUDE_DIR}")
660 message( STATUS "FFTW3_LIBRARIES ............ = ${FFTW3_LIBRARIES}")
661 message( STATUS "PERL_EXECUTABLE ............ = ${PERL_EXECUTABLE}")
662 message( STATUS "PYTHON_EXECUTABLE .......... = ${PYTHON_EXECUTABLE}")
663 message( STATUS "DOXYGEN_EXECUTABLE ......... = ${DOXYGEN_EXECUTABLE}")
664 message( STATUS )
665 message( STATUS "To override these options, add -D{OPTION_NAME}=... to the cmake command" )
666 message( STATUS "Particularly useful defines are for:")
667 message( STATUS )
668 message( STATUS " -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} (where OpenMD will be installed)")
669 message( STATUS " -DOPENBABEL2_ROOT=/path/to/openbabel")
670 message( STATUS " -DQHULL_ROOT=/path/to/qhull")
671 message( STATUS " -DFFTW3_ROOT=/path/to/fftw3")
672 message( STATUS )
673 message( STATUS "To build and install OpenMD, enter \"make\" and \"make install\"")
674 message( STATUS )