Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: e492b4519bd58ff17f724319f44f14adcabd2965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
bin_PROGRAMS = editor

# You have two .cpp files you wrote, editor.cpp and another.cpp
# Remember to include the name of the resource file with the .cpp extension.
editor_SOURCES = \
	editor.cc \
	editorwindow.cc \
	mainwindow.cc \
	mapwidget.cc \
	sidebar.cc

# You have one .h file, it's called editor.h. Therefore, here I list
# its mocced name, moc_editor.cpp.
nodist_editor_SOURCES = \
	moc_editorwindow.cc \
	moc_mainwindow.cc \
	moc_mapwidget.cc \
	moc_sidebar.cc

# This rule lets GNU make create any moc_*.cpp from the equivalent *.h
moc_%.cc: %.h
	moc $< -o $@