File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11SET (APPLICATION_MOC_HDRS
2+ DeepSSM/DeepSSMJob.h
23 Job/Job.h
34)
45
@@ -8,6 +9,7 @@ SET(Application_headers
89 )
910
1011add_library (Application STATIC
12+ DeepSSM/DeepSSMJob.cpp
1113 Job/Job.cpp
1214 ${APPLICATION_MOC_SRCS}
1315 )
@@ -16,10 +18,19 @@ target_include_directories(Application PUBLIC
1618 $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} >
1719 $<INSTALL_INTERFACE:include >)
1820
21+ set (SW_PYTHON_LIBS pybind11::embed)
22+
23+ if (APPLE )
24+ include_directories (${_Python3_INCLUDE_DIR} )
25+ set (SW_PYTHON_LIBS "" )
26+ endif (APPLE )
27+
1928target_link_libraries (Application PUBLIC
29+ Groom
2030 Mesh
2131 Utils
2232 Particles
33+ ${SW_PYTHON_LIBS}
2334 )
2435
2536# set
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ using namespace pybind11::literals; // to bring in the `_a` literal
1111#include < QThread>
1212
1313// shapeworks
14- #include < DeepSSM/ DeepSSMJob.h>
14+ #include " DeepSSMJob.h"
1515#include < Project/DeepSSMParameters.h>
1616#include < Groom.h>
1717#include < Logging.h>
File renamed without changes.
Original file line number Diff line number Diff line change @@ -157,11 +157,9 @@ SET(STUDIO_ANALYSIS_MOC_HDRS
157157
158158SET (STUDIO_DEEPSSM_SRCS
159159 DeepSSM/DeepSSMTool.cpp
160- DeepSSM/DeepSSMJob.cpp
161160 )
162161SET (STUDIO_DEEPSSM_MOC_HDRS
163162 DeepSSM/DeepSSMTool.h
164- DeepSSM/DeepSSMJob.h
165163 )
166164
167165
You can’t perform that action at this time.
0 commit comments