mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-09 16:04:41 +03:00
14 lines
270 B
C++
14 lines
270 B
C++
/* Optional packages. You might want to integrate this with your build system e.g. config.h from ./configure. */
|
|
#ifndef UTIL_HAVE_H
|
|
#define UTIL_HAVE_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifndef HAVE_ICU
|
|
//#define HAVE_ICU
|
|
#endif
|
|
|
|
#endif // UTIL_HAVE_H
|