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

1234567891011121314151617181920212223242526272829
  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 += ugameengine.cpp \
  11. ugeentity.cpp \
  12. vector3d.cpp \
  13. abstractrenderdevice.cpp \
  14. colorvector3d.cpp
  15. HEADERS += ugameengine.h\
  16. ugeentity.h \
  17. vector3d.h \
  18. abstractrenderdevice.h \
  19. colorvector3d.h
  20. unix {
  21. target.path = /usr/lib
  22. INSTALLS += target
  23. }