Hello wysota,

they're fairly standard I think, with TRANSLATIONS variables in .pro file for exe:

Qt Code:
  1. TEMPLATE = app
  2.  
  3. CONFIG(debug, debug|release) {
  4. TARGET = q1Trackerd
  5. # OBJECTS_DIR = obj_$$(QMAKESPEC)_$$[QT_VERSION]_debug
  6. # MOC_DIR = moc_$$(QMAKESPEC)_$$[QT_VERSION]_debug
  7. DEFINES += QT_DEBUG RLOG_COMPONENT="q1tracker"
  8. win32 {
  9. CONFIG += console
  10. LIBS += ../../bin/TrackerAppd1.lib \
  11. ../../3rdparty/rlog-1.4/win32/Debug/rlogd.lib
  12. }
  13. unix {
  14. LIBS += # Path to TrackerApp debug build \
  15. # Path to rlog debug build \
  16. }
  17. # SOURCES += ../common/debuq/log.cpp
  18. # HEADERS += ../common/debuq/log.h
  19. } else {
  20. TARGET = q1Tracker
  21. # OBJECTS_DIR = obj_$$(QMAKESPEC)_$$[QT_VERSION]_release
  22. # MOC_DIR = moc_$$(QMAKESPEC)_$$[QT_VERSION]_release
  23. DEFINES += QT_NO_DEBUG_OUTPUT RLOG_COMPONENT="q1tracker"
  24. win32 {
  25. LIBS += ../../bin/TrackerApp1.lib
  26. # ../3rdparty/rlog-1.4/win32/Release/rlog.lib
  27. }
  28. unix {
  29. LIBS += # Path to TrackerApp release build \
  30. }
  31. }
  32.  
  33. DESTDIR = ../../bin
  34.  
  35. RESOURCES = ../resource/common.qrc ../resource/translations.qrc
  36. TRANSLATIONS = ../resource/Tracker_de.ts \
  37. ../resource/Tracker_it.ts
  38.  
  39. INCLUDEPATH = \
  40. ../common/debuq \
  41. ../common/rlog \
  42. ../common/types \
  43. ../common/geoalg \
  44. ../TrackerApp \
  45.  
  46.  
  47.  
  48. QT += core gui
  49. CONFIG += qt warn_on debug_and_release
  50. SOURCES += \
  51. main.cpp \
  52. ../common/rlog/rlog_def.cpp \
  53.  
  54. win32 {
  55. RC_FILE = ../resource/appico.rc
  56. DEFINES += _USE_MATH_DEFINES
  57. }
To copy to clipboard, switch view to plain text mode 

and so on, this being the pro file for the application that relies on all modules (DLLs).

Thanks for any hint,
AlGaN