Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
3bfde60d
Commit
3bfde60d
authored
2 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
+ Win export declaration
parent
eac146e2
No related branches found
No related tags found
1 merge request
!1393
ASSERT uses function pointer to call qFatal, so that core must not depend on Qt (#494)
Pipeline
#90550
passed
2 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Base/CMakeLists.txt
+4
-0
4 additions, 0 deletions
Base/CMakeLists.txt
Base/Util/Assert.h
+3
-1
3 additions, 1 deletion
Base/Util/Assert.h
Wrap/WinDllMacros.h
+41
-0
41 additions, 0 deletions
Wrap/WinDllMacros.h
with
48 additions
and
1 deletion
Base/CMakeLists.txt
+
4
−
0
View file @
3bfde60d
...
...
@@ -49,3 +49,7 @@ if(CLANG AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0)
target_link_libraries
(
${
lib
}
PRIVATE c++fs
)
endif
()
endif
()
if
(
WIN32
)
target_compile_definitions
(
${
lib
}
PRIVATE -DBA_BASE_BUILD_DLL
)
endif
()
This diff is collapsed.
Click to expand it.
Base/Util/Assert.h
+
3
−
1
View file @
3bfde60d
...
...
@@ -18,12 +18,14 @@
#ifndef BORNAGAIN_BASE_UTIL_ASSERT_H
#define BORNAGAIN_BASE_UTIL_ASSERT_H
#include
"Wrap/WinDllMacros.h"
#include
<functional>
#include
<sstream>
#include
<stdexcept>
#include
<string>
extern
std
::
function
<
void
(
std
::
string
)
>
failedAssertion
;
// set in Assert.cpp, overriden by GUI
// Function called upon failed assert; set in Assert.cpp, overriden by GUI.
extern
BA_BASE_API_
std
::
function
<
void
(
std
::
string
)
>
failedAssertion
;
// ASSERT must be declared as a macro, not a function, in order for the error
// message to correctly report the source line where the assertion failed.
...
...
This diff is collapsed.
Click to expand it.
Wrap/WinDllMacros.h
0 → 100644
+
41
−
0
View file @
3bfde60d
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Wrap/WinDllMacros.h
//! @brief Defines export/import macros for global data symbols
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2015
//! @authors Scientific Computing Group at MLZ Garching
//
// ************************************************************************************************
#ifndef BORNAGAIN_WRAP_WINDLLMACROS_H
#define BORNAGAIN_WRAP_WINDLLMACROS_H
//! Macros for export/import global functions and variables (Windows only).
//!
//! Needed for Windows, empty for Linux and Mac.
//!
//! Note that classes and other non-data symbols are exported automatically thanks to
//! the CMake variable CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS.
//!
//! One such macro is needed for each component library that exports data sybols.
#ifdef _WIN32
#ifdef BA_BASE_BUILD_DLL
#define BA_BASE_API_ __declspec(dllexport)
#else
#define BA_BASE_API_ __declspec(dllimport)
#endif // BA_BASE_BUILD_DLL
#else // not _WIN32
#define BA_BASE_API_
#endif // _WIN32
#endif // BORNAGAIN_WRAP_WINDLLMACROS_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment