X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?p=unres.git;a=blobdiff_plain;f=source%2Fmaxlik%2Fsrc_CSA%2FCMakeLists.txt;fp=source%2Fmaxlik%2Fsrc_CSA%2FCMakeLists.txt;h=0000000000000000000000000000000000000000;hp=e80d110179f2f1ba0c6269ecb39a945f0395f6d7;hb=af72f8e89a5d33f0d86ba898d6c5bbbda4b25b84;hpb=f9e536df1fd1627429123fe8990edfcdc2cc1a9a diff --git a/source/maxlik/src_CSA/CMakeLists.txt b/source/maxlik/src_CSA/CMakeLists.txt deleted file mode 100644 index e80d110..0000000 --- a/source/maxlik/src_CSA/CMakeLists.txt +++ /dev/null @@ -1,61 +0,0 @@ -# -# 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-multprot.f - minsumsl.f - rmdd.f - sumsld.f -) - - -#================================================ -# Set comipiler flags for different sourcefiles -#================================================ - if (Fortran_COMPILER_NAME STREQUAL "ifort") - set(FFLAGS0 "-c -g -fbounds-check -I." ) - set(FFLAGS1 "-c -I." ) - elseif (Fortran_COMPILER_NAME STREQUAL "gfortran") - set(FFLAGS0 "-std=legacy -c -g -fbounds-check -I." ) - set(FFLAGS1 "-std=legacy -c -I." ) -endif (Fortran_COMPILER_NAME STREQUAL "ifort") - -#========================================= -# System specific flags -#========================================= -if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") - set(CPPFLAGS "${CPPFLAGS} -DLINUX") -endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux") - -#========================================= -# Set binary name -#========================================= -set(MAXLIK_BIN "maxlik_CSA") - - -#========================================= -# 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}) -set_property(TARGET MAXLIK PROPERTY RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin ) - -#========================================= -# Install Path -#========================================= -install(TARGETS MAXLIK DESTINATION ${CMAKE_INSTALL_PREFIX}) -