X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=source%2Fmaxlik%2Fsrc_CSA%2FCMakeLists.txt;fp=source%2Fmaxlik%2Fsrc_CSA%2FCMakeLists.txt;h=f87497f8e7366f5ff36aea9ffd9e84cfaa5031f0;hb=2aefc9d5a5de968d92e25861461f3cfae846b914;hp=0000000000000000000000000000000000000000;hpb=33170a5ba65d14a7a497ece82ad108c2aa357ce8;p=unres.git diff --git a/source/maxlik/src_CSA/CMakeLists.txt b/source/maxlik/src_CSA/CMakeLists.txt new file mode 100644 index 0000000..f87497f --- /dev/null +++ b/source/maxlik/src_CSA/CMakeLists.txt @@ -0,0 +1,45 @@ +# +# CMake project file for UNRES with MD for single chains +# +cmake_minimum_required(VERSION 2.8) +enable_language (Fortran) + + +#================================ +# Set source file lists +#================================ +set(MAXLIK_SRC0 + cored.f +# maxlik-opt-el.f +# maxlik-opt.f + maxlik-opt-multprot.f +# maxlik-opt-tmscore.f + minsumsl.f + rmdd.f + sumsld.f +) + +set(MAXLIK_BIN "maxlik-opt-multprot") +set(OPT "-g -fbounds-check") +set(OPT1"-O") + +set(FFLAGS "-c ${OPT} -I.") +set(FFLAGS1 "-c ${OPT1} -I.") + + +set(CPPFLAGS "-DLINUX") + + +#========================================= +# Build the binary +#========================================= +set(MAXLIK_SRCS ${MAXLIK_SRC0} ) + + +#========================================= +# Build the binary +#========================================= +add_executable(MAXLIK ${MAXLIK_SRCS} ) +set_target_properties(MAXLIK PROPERTIES OUTPUT_NAME ${MAXLIK_BIN}) + +