dsl.pro 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #/*********************************************************************/
  2. #/* */
  3. #/* Copyright 2022-2023 Rémi Synave - remi.synave@univ-littoral.fr */
  4. #/* */
  5. #/* This file is part of DSL. */
  6. #/* This software uses Qt to build the Graphical User Interface */
  7. #/* https://www.qt.io/ */
  8. #/* */
  9. #/* DSL is free software: you can redistribute it and/or modify */
  10. #/* it under the terms of the GNU General Public License as published */
  11. #/* by the Free Software Foundation, either version 3 of the License, */
  12. #/* or (at your option) any later version. */
  13. #/* */
  14. #/* DSL is distributed in the hope that it will be useful, */
  15. #/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  16. #/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  17. #/* GNU General Public License for more details. */
  18. #/* */
  19. #/* You should have received a copy of the GNU General Public License */
  20. #/* along with DSL. If not, see <http://www.gnu.org/licenses/>. */
  21. #/* */
  22. #/*********************************************************************/
  23. QT += core gui widgets
  24. INCLUDEPATH = ../StrengthLine/ \
  25. ../WorkArea/
  26. HEADERS = ../StrengthLine/StrengthLine.hpp \
  27. ../WorkArea/WorkArea.hpp \
  28. MainWindow.hpp
  29. SOURCES = ../StrengthLine/StrengthLine.cpp \
  30. ../WorkArea/WorkArea.cpp \
  31. MainWindow.cpp \
  32. main.cpp
  33. # install
  34. target.path = $$[QT_INSTALL_EXAMPLES]/dsl
  35. INSTALLS += target