##// END OF EJS Templates
Many synchronization fixes, most operations works, only product drag from tree is broken...
Many synchronization fixes, most operations works, only product drag from tree is broken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1331:c1dcbf747424
r1377:0f6ffbe66d5f
Show More
CMakeLists.txt
34 lines | 810 B | text/plain | TextLexer
Modernized CMake configuration...
r1331 include_directories(include)
Initialisation de l'application multithread avec le spimpl....
r21
Modernized CMake configuration...
r1331 FILE (GLOB_RECURSE app_SRCS
include/*.h
src/*.cpp
resources/*.qrc
)
Initialisation de l'application multithread avec le spimpl....
r21
Modernized CMake configuration...
r1331 QT5_WRAP_UI(UiGenerated_SRCS
ui/MainWindow.ui
Initialisation de l'application multithread avec le spimpl....
r21 )
Modernized CMake configuration...
r1331 add_executable(sciqlopapp ${app_SRCS} ${UiGenerated_SRCS})
if(NOT BUILD_SHARED_LIBS)
add_definitions(-DQT_STATICPLUGIN)
target_link_libraries(sciqlopapp mockplugin)
target_link_libraries(sciqlopapp amdaplugin)
endif()
target_link_libraries(sciqlopapp
Qt5::Core
Qt5::Widgets
Qt5::Network
Qt5::PrintSupport
Qt5::Svg
sciqlopgui
sciqlopcore
Configuration update to permit make install on linux
r257 )
Initialisation de l'application multithread avec le spimpl....
r21
Modernized CMake configuration...
r1331 install(TARGETS sciqlopapp DESTINATION ${CMAKE_INSTALL_BINDIR})
install(FILES resources/SciQLOP.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications/)
install(FILES resources/sciqlopLOGO.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/SciQLOP/icons/)
Initialisation de l'application multithread avec le spimpl....
r21