File tree 3 files changed +12
-2
lines changed 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,12 @@ add_library(behavior_tree_editor SHARED
144
144
${APP_CPPS}
145
145
${FORMS_HEADERS}
146
146
)
147
+ set_target_properties (behavior_tree_editor PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
148
+ include (GenerateExportHeader)
149
+ generate_export_header(behavior_tree_editor)
150
+ target_include_directories (behavior_tree_editor PUBLIC
151
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR} >
152
+ )
147
153
148
154
SET (GROOT_DEPENDENCIES QtNodeEditor )
149
155
Original file line number Diff line number Diff line change 7
7
#include < QTableWidgetItem>
8
8
#include " XML_utilities.hpp"
9
9
10
+ #include " behavior_tree_editor_export.h"
11
+
10
12
namespace Ui {
11
13
class SidepanelEditor ;
12
14
}
13
15
14
- class SidepanelEditor : public QFrame
16
+ class BEHAVIOR_TREE_EDITOR_EXPORT SidepanelEditor : public QFrame
15
17
{
16
18
Q_OBJECT
17
19
Original file line number Diff line number Diff line change 7
7
#include < QStandardItemModel>
8
8
#include " bt_editor_base.h"
9
9
10
+ #include " behavior_tree_editor_export.h"
11
+
10
12
11
13
namespace Ui {
12
14
class SidepanelReplay ;
13
15
}
14
16
15
- class SidepanelReplay : public QFrame
17
+ class BEHAVIOR_TREE_EDITOR_EXPORT SidepanelReplay : public QFrame
16
18
{
17
19
Q_OBJECT
18
20
You can’t perform that action at this time.
0 commit comments