utils_global.h 417 B

1234567891011121314
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
  3. #pragma once
  4. #include <qglobal.h>
  5. #if defined(UTILS_LIBRARY)
  6. # define QTCREATOR_UTILS_EXPORT Q_DECL_EXPORT
  7. #elif defined(UTILS_STATIC_LIBRARY) // Abuse single files for manual tests
  8. # define QTCREATOR_UTILS_EXPORT
  9. #else
  10. # define QTCREATOR_UTILS_EXPORT Q_DECL_IMPORT
  11. #endif