##// END OF EJS Templates
La gui est commenté tant qu'il n'y a pas de code dedans. Supprime un warning cmake
La gui est commenté tant qu'il n'y a pas de code dedans. Supprime un warning cmake

File last commit:

r0:5cbbc595e8f3
r9:0e94a0eca8ab
Show More
find_libs.cmake
30 lines | 528 B | text/x-cmake | CMakeLexer
#
# findslibs.cmake
#
#
# Qt
#
# Find Qt here so that a message is displayed in the console when executing
# cmake, but each application must call SCIQLOP_FIND_QT() to load the Qt modules that
# it needs.
FIND_PACKAGE(Qt5Core REQUIRED)
FIND_PACKAGE(Qt5Test REQUIRED)
FIND_PACKAGE(Qt5Gui REQUIRED)
#
# doxygen tools
#
FIND_PACKAGE(Doxygen)
#
# Cppcheck tool
#
FIND_PACKAGE(cppcheck)
#
# Formatting tools
#
LIST( APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/formatting/cmake")
FIND_PACKAGE(vera++)
FIND_PACKAGE(ClangFormat)