mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-13 04:44:39 +00:00
Estimated hours taken: 0.1 Branches: main Get configure to add a comment to Constants.java and Native.java saying that they are automatically generated. Update the java/runtime/.cvsignore. java/runtime/Constants.java.in: java/runtime/Native.java.in: Get configure to add a comment saying that these files are automatically generated. java/runtime/.cvsignore: Ignore the automatically generated file Native.java.
17 lines
544 B
Java
17 lines
544 B
Java
// @configure_input@
|
|
//
|
|
// Copyright (C) 2001-2004 The University of Melbourne.
|
|
// This file may only be copied under the terms of the GNU Library General
|
|
// Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
//
|
|
// This class is used to store miscellaneous Mercury-related constants.
|
|
// At the moment it just stores the library version.
|
|
//
|
|
|
|
package mercury.runtime;
|
|
|
|
public class Constants {
|
|
public static final java.lang.String MR_VERSION = "@VERSION@";
|
|
public static final java.lang.String MR_FULLARCH = "@FULLARCH@";
|
|
}
|