You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
ddfdaa947d
* Update CMakeLists.txt to modern practices * Add CMake installs() restructure include/ src/ to accomodate it
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "Compiler.hpp"
|
|
#include "OperatingSystem.hpp"
|
|
|
|
#ifdef NODE_EDITOR_PLATFORM_WINDOWS
|
|
# define NODE_EDITOR_EXPORT __declspec(dllexport)
|
|
# define NODE_EDITOR_IMPORT __declspec(dllimport)
|
|
# define NODE_EDITOR_LOCAL
|
|
#elif \
|
|
NODE_EDITOR_COMPILER_GNU_VERSION_MAJOR >= 4 || \
|
|
defined (NODE_EDITOR_COMPILER_CLANG)
|
|
# define NODE_EDITOR_EXPORT __attribute__((visibility("default")))
|
|
# define NODE_EDITOR_IMPORT __attribute__((visibility("default")))
|
|
# define NODE_EDITOR_LOCAL __attribute__((visibility("hidden")))
|
|
#else
|
|
# define NODE_EDITOR_EXPORT
|
|
# define NODE_EDITOR_IMPORT
|
|
# define NODE_EDITOR_LOCAL
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
# define NODE_EDITOR_DEMANGLED extern "C"
|
|
#else
|
|
# define NODE_EDITOR_DEMANGLED
|
|
#endif
|
|
|
|
|
|
#if defined (NODE_EDITOR_SHARED) && !defined (NODE_EDITOR_STATIC)
|
|
# ifdef NODE_EDITOR_EXPORTS
|
|
# define NODE_EDITOR_PUBLIC NODE_EDITOR_EXPORT
|
|
# else
|
|
# define NODE_EDITOR_PUBLIC NODE_EDITOR_IMPORT
|
|
# endif
|
|
# define NODE_EDITOR_PRIVATE NODE_EDITOR_LOCAL
|
|
#elif !defined (NODE_EDITOR_SHARED) && defined (NODE_EDITOR_STATIC)
|
|
# define NODE_EDITOR_PUBLIC
|
|
# define NODE_EDITOR_PRIVATE
|
|
#elif defined (NODE_EDITOR_SHARED) && defined (NODE_EDITOR_STATIC)
|
|
# ifdef NODE_EDITOR_EXPORTS
|
|
# error "Cannot build as shared and static simultaneously."
|
|
# else
|
|
# error "Cannot link against shared and static simultaneously."
|
|
# endif
|
|
#else
|
|
# ifdef NODE_EDITOR_EXPORTS
|
|
# error "Choose whether to build as shared or static."
|
|
# else
|
|
# error "Choose whether to link against shared or static."
|
|
# endif
|
|
#endif
|