Changes in doc/genMakefile.tcl [71efbfe:748ce07] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/genMakefile.tcl
r71efbfe r748ce07 225 225 endif 226 226 227 228 # check consistency229 ifneq ($(PROMC),)230 ifneq ($(PROIO),)231 $(error Attention: PROMC and PROIO env. variables are set simultaneously. You cannot compile ProMC and ProIO readers in one compilation process due to an inconsistency in protocol buffers libraries. The suggestion is to compile these two readers in two steps. First unset PROIO variable and then \"configure; make\". After this, unset PROMC, set PROIO, and run \"configure; make\". During runs, make sure shared libraries are set correctly. )232 endif233 endif234 235 236 227 ifneq ($(PROMC),) 237 228 HAS_PROMC = true 238 $(info ProMC event reader is requested)239 229 CXXFLAGS += -I$(PROMC)/include -I$(PROMC)/src 240 230 OPT_LIBS += -L$(PROMC)/lib -lpromc -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz 241 endif242 243 ifneq ($(PROIO),)244 HAS_PROIO = true245 $(info ProIO reader is requested)246 ifeq ($(PROTOBUF),)247 $(error but PROTOBUF variable is not set.)248 endif249 250 PROTOBUF_FILE=$(PROTOBUF)/lib/libprotobuf.a251 ifeq ("$(wildcard $(PROTOBUF_FILE))","")252 $(error PROTOBUF variable is set, but it does not point to valid $(PROTOBUF_FILE))253 endif254 255 ifeq ($(LZ4),)256 $(error but LZ4 variable is not set.)257 endif258 LZ4_FILE=$(LZ4)/lib/liblz4.so259 ifeq ("$(wildcard $(LZ4_FILE))","")260 $(error LZ4 variable is set, but it does not point to valid $(LZ4_FILE))261 endif262 263 264 CXXFLAGS += -I$(PROIO)/include -I$(PROTOBUF)/include -I$(LZ4)/include -I$(PROIO)/src265 OPT_LIBS += -L$(PROTOBUF)/lib -lprotobuf -L$(PROIO)/lib -lproio -lproio.pb -lz -L$(LZ4)/lib -llz4266 231 endif 267 232 … … 307 272 puts {ifeq ($(HAS_PROMC),true)} 308 273 executableDeps {readers/DelphesProMC.cpp} 309 puts {endif}310 puts {}311 312 puts {ifeq ($(HAS_PROIO),true)}313 executableDeps {readers/DelphesProIO.cpp}314 274 puts {endif} 315 275 puts {}
Note:
See TracChangeset
for help on using the changeset viewer.