Codebase list ohcount / c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main test / detect_files / qmake.pro
c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main

Tree @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main (Download .tar.gz)

qmake.pro @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/mainraw · history · blame

CONFIG += qt debug
HEADERS += hello.h
SOURCES += hello.cpp
SOURCES += main.cpp
win32 {
	SOURCES += hellowin.cpp
}
unix {
	SOURCES += hellounix.cpp
}
!exists( main.cpp ) {
	error( "No main.cpp file found" )
}
win32:debug {
	CONFIG += console
}