Unverified Commit f4fcd2a9 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

flag that MESSAGE package is not compatible with -DLAMMPS_BIGBIG

parent e057ae18
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
if(PKG_MESSAGE)
  if(LAMMPS_SIZES STREQUAL BIGBIG)
    message(FATAL_ERROR "The MESSAGE Package is not compatible with -DLAMMPS_BIGBIG")
  endif()
  option(MESSAGE_ZMQ "Use ZeroMQ in MESSAGE package" OFF)
  file(GLOB_RECURSE cslib_SOURCES ${LAMMPS_LIB_SOURCE_DIR}/message/cslib/[^.]*.F
      ${LAMMPS_LIB_SOURCE_DIR}/message/cslib/[^.]*.c
+4 −0
Original line number Diff line number Diff line
@@ -17,6 +17,10 @@

#include <stdint.h>

#if defined(LAMMPS_BIGBIG)
#error CSlib is not compatible with -DLAMMPS_BIGBIG
#endif

namespace CSLIB_NS {

class CSlib {