You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UGameEngine.pro 739B

123456789101112131415161718192021222324252627282930313233
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-08-31T16:32:08
  4. #
  5. #-------------------------------------------------
  6. QT += gui core
  7. TARGET = UGameEngine
  8. TEMPLATE = lib
  9. DEFINES += UGAMEENGINE_LIBRARY
  10. SOURCES += engine/ugameengine.cpp \
  11. engine/abstractrenderdevice.cpp \
  12. entities/ugeentity.cpp \
  13. utils/vector3d.cpp \
  14. utils/colorvector3d.cpp \
  15. entities/ugeentitycube.cpp \
  16. entities/ugeentityaxes.cpp
  17. HEADERS += engine/ugameengine.h\
  18. engine/abstractrenderdevice.h \
  19. entities/ugeentity.h \
  20. utils/vector3d.h \
  21. utils/colorvector3d.h \
  22. entities/ugeentitycube.h \
  23. entities/ugeentityaxes.h
  24. unix {
  25. target.path = /usr/lib
  26. INSTALLS += target
  27. }