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

1234567891011121314151617181920212223242526
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-08-31T16:32:08
  4. #
  5. #-------------------------------------------------
  6. QT -= gui
  7. TARGET = UGameEngine
  8. TEMPLATE = lib
  9. DEFINES += UGAMEENGINE_LIBRARY
  10. SOURCES += ugameengine.cpp \
  11. ugeentity.cpp \
  12. vector3d.cpp
  13. HEADERS += ugameengine.h\
  14. ugameengine_global.h \
  15. ugeentity.h \
  16. vector3d.h
  17. unix {
  18. target.path = /usr/lib
  19. INSTALLS += target
  20. }