You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
901 B
27 lines
901 B
2 years ago
|
# Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions
|
||
|
# of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
||
|
# NTESS, the U.S. Government retains certain rights in this software.
|
||
|
#
|
||
|
# See packages/seacas/LICENSE for details
|
||
|
#pragma once
|
||
|
|
||
|
#define NEMESIS_VERSION_MAJOR @NEMESIS_VERSION_MAJOR@
|
||
|
#define NEMESIS_VERSION_MINOR @NEMESIS_VERSION_MINOR@
|
||
|
#define NEMESIS_VERSION_PATCH @NEMESIS_VERSION_PATCH@
|
||
|
#define NEMESIS_VERSION "@NEMESIS_VERSION_MAJOR@.@NEMESIS_VERSION_MINOR@.@NEMESIS_VERSION_PATCH@"
|
||
|
|
||
|
#if defined(_WIN32) && !defined(WIN32)
|
||
|
# define WIN32
|
||
|
#endif
|
||
|
|
||
|
#cmakedefine NEMESIS_BUILD_SHARED_LIBS
|
||
|
#if defined(WIN32) && defined(NEMESIS_BUILD_SHARED_LIBS)
|
||
|
# if defined(nemc_EXPORTS)
|
||
|
# define NEMESIS_EXPORT __declspec( dllexport ) extern
|
||
|
# else
|
||
|
# define NEMESIS_EXPORT __declspec( dllimport ) extern
|
||
|
# endif
|
||
|
#else
|
||
|
# define NEMESIS_EXPORT extern
|
||
|
#endif
|