File: loader.pro

package info (click to toggle)
launchy 2.5-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,532 kB
  • sloc: cpp: 11,735; sh: 162; makefile: 45
file content (30 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 TEMPLATE      = lib
 CONFIG       += plugin debug_and_release
 VPATH 		  += ../../src/
 INCLUDEPATH += ../../src/
 UI_DIR		   = ../../plugins/loader/
 FORMS		   = dlg.ui
 HEADERS       = plugin_interface.h loader.h gui.h globals.h
 SOURCES       = plugin_interface.cpp loader.cpp gui.cpp
 TARGET		   = loader
 
 win32 {
 	CONFIG -= embed_manifest_dll
	LIBS += shell32.lib
%	LIBS += user32.lib
%	LIBS += Gdi32.lib
%	LIBS += comctl32.lib
}
 
if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
    DESTDIR = ../../debug/plugins
}

if(!debug_and_release|build_pass):CONFIG(release, debug|release) {
    DESTDIR = ../../release/plugins
}


unix {

}