Update copyright statements and change license to LGPL
[alexxy/gromacs.git] / src / kernel / CMakeLists.txt
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2012, by the GROMACS development team, led by
5 # David van der Spoel, Berk Hess, Erik Lindahl, and including many
6 # others, as listed in the AUTHORS file in the top-level source
7 # directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34 #
35
36 set(GMXPREPROCESS_SOURCES 
37     add_par.c       
38     calc_verletbuf.c
39     compute_io.c    
40     convparm.c      
41     gen_ad.c        
42     gen_vsite.c     
43     genhydro.c   
44     gpp_atomtype.c  
45     gpp_bond_atomtype.c     
46     h_db.c          
47     hackblock.c             
48     hizzie.c        
49     nm2type.c
50     pdb2top.c       
51     pgutil.c        
52     readir.c        
53     readpull.c      
54     readadress.c      
55     readrot.c
56     resall.c        
57     sorting.c       
58     specbond.c      
59     ter_db.c        
60     tomorse.c       
61     topdirs.c       
62     topexcl.c       
63     topio.c         
64     toppush.c       
65     topshake.c      
66     toputil.c       
67     tpbcmp.c        
68     vsite_parm.c    
69     fflibutil.c
70     xlate.c)
71
72 set(MDRUN_SOURCES 
73     gctio.c    ionize.c runner.c
74     do_gct.c     repl_ex.c  xutils.c pme_loadbal.c
75     md.c         mdrun.c    genalg.c membed.c
76     md_openmm.c)
77
78 add_library(gmxpreprocess ${GMXPREPROCESS_SOURCES})
79 target_link_libraries(gmxpreprocess md)
80 set_target_properties(gmxpreprocess PROPERTIES OUTPUT_NAME "gmxpreprocess${GMX_LIBS_SUFFIX}" SOVERSION ${SOVERSION} INSTALL_NAME_DIR "${LIB_INSTALL_DIR}"
81     COMPILE_FLAGS "${OpenMP_C_FLAGS}")
82
83
84 if(GMX_GPU OR GMX_OPENMM) 
85     include_directories(${CMAKE_SOURCE_DIR}/src/gmxlib/gpu_utils)
86 endif()
87
88 if(GMX_OPENMM) 
89     include_directories(${OpenMM_INCLUDE_DIR})
90     link_directories(${OpenMM_LIBRARY_DIR}) 
91     # with this define no evn.var. is needed with OPENMM_PLUGIN_DIR
92     # if the same OpenMM installation is used for running and building 
93     add_definitions( -DOPENMM_PLUGIN_DIR="${OpenMM_PLUGIN_DIR}" ) 
94     file(TO_CMAKE_PATH ${OpenMM_PLUGIN_DIR} _path)
95     add_library(openmm_api_wrapper STATIC openmm_wrapper.cpp)
96     target_link_libraries(openmm_api_wrapper ${OpenMM_LIBRARIES})
97     set(GMX_OPENMM_LIBRARIES openmm_api_wrapper ${OpenMM_LIBRARIES})   
98 endif(GMX_OPENMM)
99
100 if(GMX_GPU OR GMX_OPENMM OR GMX_FORCE_CXX)
101     set_source_files_properties(main.c PROPERTIES LANGUAGE CXX)
102     if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
103         set_source_files_properties(main.c PROPERTIES COMPILE_FLAGS "-x c++")
104     endif()
105 endif()
106
107 if(GMX_FAHCORE)
108   add_library(fahcore ${MDRUN_SOURCES})
109 else(GMX_FAHCORE)
110
111 list(APPEND GMX_EXTRA_LIBRARIES gmxpreprocess md ${OpenMP_LINKER_FLAGS})
112
113 set(GMX_KERNEL_PROGRAMS
114     grompp tpbconv pdb2gmx g_protonate g_luck gmxdump g_x2top gmxcheck)
115
116 foreach(PROGRAM ${GMX_KERNEL_PROGRAMS})
117     add_executable(${PROGRAM} ${PROGRAM}.c main.c)
118     if (NOT ${PROGRAM} STREQUAL "g_luck")
119         gmx_add_man_page(${PROGRAM})
120     endif()
121     target_link_libraries(${PROGRAM} ${GMX_EXTRA_LIBRARIES})
122     set_target_properties(${PROGRAM} PROPERTIES OUTPUT_NAME "${PROGRAM}${GMX_BINARY_SUFFIX}")
123 endforeach()
124
125 add_executable(mdrun ${MDRUN_SOURCES} main.c)
126 gmx_add_man_page(mdrun)
127 target_link_libraries(mdrun ${GMX_EXTRA_LIBRARIES} ${GMX_OPENMM_LIBRARIES})
128 set_target_properties(mdrun PROPERTIES OUTPUT_NAME "mdrun${GMX_BINARY_SUFFIX}" COMPILE_FLAGS "${OpenMP_C_FLAGS}")
129
130 # this is to circumvent the following MSVC error: 
131 # warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs
132 # fatal error LNK1169: one or more multiply defined symbols found
133 if(GMX_OPENMM AND MSVC)
134     set_target_properties(mdrun PROPERTIES LINK_FLAGS "/NODEFAULTLIB:LIBCMT")
135 endif()
136
137 # Construct component groups for installation; note that a component may
138 # belong to only one group
139 foreach(PROGRAM ${GMX_KERNEL_PROGRAMS})
140     set(CPACK_COMPONENT_${PROGRAM}_GROUP tools)
141 endforeach()
142 set(CPACK_COMPONENT_MDRUN_GROUP mdrun)
143
144 foreach(PROGRAM ${GMX_KERNEL_PROGRAMS} mdrun)
145     # Manage CPack component dependencies
146     set(CPACK_COMPONENT_${PROGRAM}_DEPENDS libraries libraries-gmxpreprocess)
147
148     # Create custom install-xxxx target
149     if (BUILD_SHARED_LIBS)
150     # If shared libraries are used, we need to install the libraries in
151     # addition to the mdrun binary.
152        add_custom_target(install-${PROGRAM}
153            COMMAND ${CMAKE_COMMAND} -DCOMPONENT=libraries
154                    -P ${CMAKE_BINARY_DIR}/cmake_install.cmake
155            COMMAND ${CMAKE_COMMAND} -DCOMPONENT=libraries-gmxpreprocess
156                    -P ${CMAKE_BINARY_DIR}/cmake_install.cmake
157            COMMAND ${CMAKE_COMMAND} -DCOMPONENT=${PROGRAM}
158                    -P ${CMAKE_BINARY_DIR}/cmake_install.cmake
159            COMMENT "Installing ${PROGRAM}")
160     else()
161        add_custom_target(install-${PROGRAM}
162            COMMAND ${CMAKE_COMMAND} -DCOMPONENT=${PROGRAM}
163                    -P ${CMAKE_BINARY_DIR}/cmake_install.cmake
164            COMMENT "Installing ${PROGRAM}")
165     endif()
166     add_dependencies(install-${PROGRAM} ${PROGRAM})
167
168     # Finally, trigger installation
169     install(
170       TARGETS ${PROGRAM}
171       COMPONENT ${PROGRAM}
172       DESTINATION ${BIN_INSTALL_DIR}
173       )
174 endforeach()
175
176 install(TARGETS gmxpreprocess DESTINATION ${LIB_INSTALL_DIR} COMPONENT libraries-gmxpreprocess)
177
178 if (INSTALL_CUDART_LIB) #can be set manual by user
179     if (GMX_OPENMM OR GMX_GPU)
180         foreach(CUDA_LIB ${CUDA_LIBRARIES})
181             string(REGEX MATCH "cudart" IS_CUDART ${CUDA_LIB})
182             if(IS_CUDART) #libcuda should not be installed
183                 #install also name-links (linker uses those)
184                 file(GLOB CUDA_LIBS ${CUDA_LIB}*)
185                 install(FILES ${CUDA_LIBS} DESTINATION
186                     ${LIB_INSTALL_DIR} COMPONENT libraries)
187             endif()
188         endforeach()
189     else()
190         message(WARNING "INSTALL_CUDART_LIB only makes sense with GMX_OPENMM or GMX_GPU")
191     endif()
192 endif ()
193 endif(GMX_FAHCORE)
194
195 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libgmxpreprocess.pc.cmakein ${CMAKE_CURRENT_BINARY_DIR}/libgmxpreprocess.pc @ONLY)
196 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libgmxpreprocess.pc
197         DESTINATION ${LIB_INSTALL_DIR}/pkgconfig
198         RENAME "libgmxpreprocess${GMX_LIBS_SUFFIX}.pc"
199         COMPONENT development)