images converted to PNG

This commit is contained in:
peri4
2010-08-30 21:45:30 +04:00
parent 2a13131366
commit 460f33fb7e
346 changed files with 9528 additions and 1 deletions

14
CMakeLists.txt~ Normal file
View File

@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.6)
project(Alien_Defender)
find_package(Qt4 REQUIRED)
include_directories(${QT_INCLUDES})
file(GLOB MOCS "./*.h")
file(GLOB CPPS "./*.cpp")
file(GLOB UIS "./*.ui")
file(GLOB RES "./*.qrc")
add_definitions(-Wall -O2 -g3 -ggdb)
qt4_wrap_ui(CUIS ${UIS})
qt4_wrap_cpp(CMOCS ${MOCS})
qt4_add_resources(CRES ${RES})
add_executable(AlienDefender ${CMOCS} ${CUIS} ${CPPS} ${CRES})
target_link_libraries(AlienDefender ${QT_QTGUI_LIBRARY} ${QT_LIBRARIES} ${QT_QTXML_LIBRARY} ${QT_QTXMLPATTERNS_LIBRARY})