mirror of https://github.com/KLayout/klayout.git
WIP: added missing files.
This commit is contained in:
parent
4c90d98750
commit
538f8f3d53
|
|
@ -38,6 +38,7 @@ private
|
|||
src/plugins/*
|
||||
!src/plugins/streamers
|
||||
!src/plugins/tools
|
||||
!src/plugins/common
|
||||
!src/plugins/*.pro
|
||||
!src/plugins/*.pri
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,51 @@
|
|||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2018 Matthias Koefferlein
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#if !defined(HDR_dbPluginCommon_h)
|
||||
# define HDR_dbPluginCommon_h
|
||||
|
||||
# if defined _WIN32 || defined __CYGWIN__
|
||||
|
||||
# ifdef MAKE_DB_PLUGIN_LIBRARY
|
||||
# define DB_PLUGIN_PUBLIC __declspec(dllexport)
|
||||
# else
|
||||
# define DB_PLUGIN_PUBLIC __declspec(dllimport)
|
||||
# endif
|
||||
# define DB_PLUGIN_LOCAL
|
||||
# define DB_PLUGIN_PUBLIC_TEMPLATE
|
||||
|
||||
# else
|
||||
|
||||
# if __GNUC__ >= 4 || defined(__clang__)
|
||||
# define DB_PLUGIN_PUBLIC __attribute__ ((visibility ("default")))
|
||||
# define DB_PLUGIN_PUBLIC_TEMPLATE __attribute__ ((visibility ("default")))
|
||||
# define DB_PLUGIN_LOCAL __attribute__ ((visibility ("hidden")))
|
||||
# else
|
||||
# define DB_PLUGIN_PUBLIC
|
||||
# define DB_PLUGIN_PUBLIC_TEMPLATE
|
||||
# define DB_PLUGIN_LOCAL
|
||||
# endif
|
||||
|
||||
# endif
|
||||
|
||||
#endif
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2018 Matthias Koefferlein
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#if !defined(HDR_layPluginCommon_h)
|
||||
# define HDR_layPluginCommon_h
|
||||
|
||||
# if defined _WIN32 || defined __CYGWIN__
|
||||
|
||||
# ifdef MAKE_LAY_PLUGIN_LIBRARY
|
||||
# define LAY_PLUGIN_PUBLIC __declspec(dllexport)
|
||||
# else
|
||||
# define LAY_PLUGIN_PUBLIC __declspec(dllimport)
|
||||
# endif
|
||||
# define LAY_PLUGIN_LOCAL
|
||||
# define LAY_PLUGIN_PUBLIC_TEMPLATE
|
||||
|
||||
# else
|
||||
|
||||
# if __GNUC__ >= 4 || defined(__clang__)
|
||||
# define LAY_PLUGIN_PUBLIC __attribute__ ((visibility ("default")))
|
||||
# define LAY_PLUGIN_PUBLIC_TEMPLATE __attribute__ ((visibility ("default")))
|
||||
# define LAY_PLUGIN_LOCAL __attribute__ ((visibility ("hidden")))
|
||||
# else
|
||||
# define LAY_PLUGIN_PUBLIC
|
||||
# define LAY_PLUGIN_PUBLIC_TEMPLATE
|
||||
# define LAY_PLUGIN_LOCAL
|
||||
# endif
|
||||
|
||||
# endif
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue