##// END OF EJS Templates
News TS impl seems to pass all tests \o/...
News TS impl seems to pass all tests \o/ Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1420:3c3e24550401
r1421:39383389f6c1
Show More
CMakeLists.txt
41 lines | 1023 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 )
Removed Console for Windows builds with CMake...
r1399 add_executable(sciqlopapp WIN32 ${app_SRCS} ${UiGenerated_SRCS})
Modernized CMake configuration...
r1331 if(NOT BUILD_SHARED_LIBS)
add_definitions(-DQT_STATICPLUGIN)
Switched to new TS impl but quite broken!...
r1420 if(BUILD_PLUGINS)
target_link_libraries(sciqlopapp mockplugin)
target_link_libraries(sciqlopapp amdaplugin)
endif()
endif()
if(NOT BUILD_PLUGINS)
add_definitions(-DSQP_NO_PLUGINS)
Modernized CMake configuration...
r1331 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/)
added appstream data...
r1402 install(FILES resources/SciQLOP.appdata.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo/)
Modernized CMake configuration...
r1331 install(FILES resources/sciqlopLOGO.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/SciQLOP/icons/)
Initialisation de l'application multithread avec le spimpl....
r21