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 675B

12345678910111213141516171819202122232425262728293031
  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. HEADERS += engine/ugameengine.h\
  17. engine/abstractrenderdevice.h \
  18. entities/ugeentity.h \
  19. utils/vector3d.h \
  20. utils/colorvector3d.h \
  21. entities/ugeentitycube.h
  22. unix {
  23. target.path = /usr/lib
  24. INSTALLS += target
  25. }