]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MICROCERN/CMakeLists.txt
Dummy initialization ov HEPEVT COMMON block
[u/mrichter/AliRoot.git] / MICROCERN / CMakeLists.txt
CommitLineData
29bccb0a 1# **************************************************************************
2# * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3# * *
4# * Author: The ALICE Off-line Project. *
5# * Contributors are mentioned in the code where appropriate. *
6# * *
7# * Permission to use, copy, modify and distribute this software and its *
8# * documentation strictly for non-commercial purposes is hereby granted *
9# * without fee, provided that the above copyright notice appears in all *
10# * copies and that both the copyright notice and this permission notice *
11# * appear in the supporting documentation. The authors make no claims *
12# * about the suitability of this software for any purpose. It is *
13# * provided "as is" without express or implied warranty. *
14# **************************************************************************
6d839a5c 15
29bccb0a 16# Module
17set(MODULE microcern)
6d839a5c 18
29bccb0a 19# Module include folder
427d561c 20include_directories(${AliRoot_SOURCE_DIR}/MICROCERN)
6d839a5c 21
29bccb0a 22# Additional include folders in alphabetical order except ROOT
23include_directories(${ROOT_INCLUDE_DIRS}
24 )
25
26# Sources in alphabetical order
27set(SRCS
28 )
29
30# Fortran sources
31set(FSRCS
32 cltou.F
33 gamma.F
34 gamma64.F
35 sortzv.F
36 ufill.F
37 fint.F
38 abend.F
39 cfill.F
40 mtlprt.F
41 mtlset.F
42 kerset.F
43 gauss.F
44 getenvf.F
45 gauss64.F
46 )
47
48# C sources
49set(CSRCS
50 geteni.c
51 fchput.c
52 fchtak.c
53 dummies.c
54 )
55
56# On Darwin
57if(${CMAKE_SYSTEM} MATCHES Darwin)
58 set(CSRCS ${CSRCS} lnblnk.c)
59endif(${CMAKE_SYSTEM} MATCHES Darwin)
60
61# Headers from sources
62#string(REPLACE ".cxx" ".h" HDRS "${SRCS}")
63
64# Generate the dictionary
65# It will create G_ARG1.cxx and G_ARG1.h / ARG1 = function first argument
66#get_directory_property(incdirs INCLUDE_DIRECTORIES)
67#generate_dictionary("${MODULE}" "${MODULE}LinkDef.h" "${HDRS}" "${incdirs}")
68
69# Generate the ROOT map
70# Dependecies
71set(LIBDEPS)
72generate_rootmap("${MODULE}" "${LIBDEPS}" "${CMAKE_CURRENT_SOURCE_DIR}/${MODULE}LinkDef.h")
73
74
75# Add a library to the project using the specified source files
76add_library(${MODULE} SHARED ${SRCS} ${FSRCS} ${CSRCS})
77
78# Additional compilation flags
68aeb13b 79set_target_properties(${MODULE} PROPERTIES COMPILE_FLAGS "")
29bccb0a 80
81# System dependent: Modify the way the library is build
82if(${CMAKE_SYSTEM} MATCHES Darwin)
83 set_target_properties(${MODULE} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
84endif(${CMAKE_SYSTEM} MATCHES Darwin)
85
86# Installation
87install(TARGETS ${MODULE}
88 ARCHIVE DESTINATION lib
89 LIBRARY DESTINATION lib)
90
91#install(FILES ${HDRS} DESTINATION include)