building fixes of mod Assembly

This commit is contained in:
Fabio Rossi
2018-07-13 10:29:02 +02:00
committed by Yorik van Havre
parent 1a4d095a6a
commit 87cc149b93
3 changed files with 18 additions and 3 deletions

View File

@@ -103,6 +103,9 @@ SET(Assembly_SRCS
)
add_library(Assembly SHARED ${Assembly_SRCS})
if(CMAKE_COMPILER_IS_GNUCXX)
set_target_properties(Assembly PROPERTIES COMPILE_FLAGS "-fext-numeric-literals")
endif()
target_link_libraries(Assembly ${Assembly_LIBS} ${log_LIB})

View File

@@ -22,6 +22,7 @@
#include "geometry.hpp"
#include <opendcm/core/constraint.hpp>
#include <opendcm/core/imp/kernel_imp.hpp>
#include <boost/fusion/include/copy.hpp>
#include <boost/math/special_functions.hpp>

View File

@@ -35,12 +35,20 @@ set(AssemblyGui_MOC_HDRS
fc_wrap_cpp(AssemblyGui_MOC_SRCS ${AssemblyGui_MOC_HDRS})
SOURCE_GROUP("Moc" FILES ${AssemblyGui_MOC_SRCS})
qt4_add_resources(AssemblyGui_SRCS Resources/Assembly.qrc)
if (BUILD_QT5)
qt5_add_resources(AssemblyGui_SRCS Resources/Assembly.qrc)
else()
qt4_add_resources(AssemblyGui_SRCS Resources/Assembly.qrc)
endif()
set(AssemblyGui_UIC_SRCS
#TaskAssemblyConstraints.ui
)
qt4_wrap_ui(AssemblyGui_UIC_HDRS ${AssemblyGui_UIC_SRCS})
if (BUILD_QT5)
qt5_wrap_ui(AssemblyGui_UIC_HDRS ${AssemblyGui_UIC_SRCS})
else()
qt4_wrap_ui(AssemblyGui_UIC_HDRS ${AssemblyGui_UIC_SRCS})
endif()
SET(AssemblyGuiViewProvider_SRCS
ViewProvider.cpp
@@ -68,7 +76,7 @@ SET(AssemblyGuiModule_SRCS
Command.cpp
CommandConstraints.cpp
Resources/Assembly.qrc
qrc_Assembly.cxx
#qrc_Assembly.cxx
PreCompiled.cpp
PreCompiled.h
Workbench.cpp
@@ -85,6 +93,9 @@ SET(AssemblyGui_SRCS
)
add_library(AssemblyGui SHARED ${AssemblyGui_SRCS})
if(CMAKE_COMPILER_IS_GNUCXX)
set_target_properties(AssemblyGui PROPERTIES COMPILE_FLAGS "-fext-numeric-literals")
endif()
target_link_libraries(AssemblyGui ${AssemblyGui_LIBS})