Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Refactoring: Added dependency info about subprojects in the top level…
Browse files Browse the repository at this point in the history
… project file replacing the 'ordered' kludge - now we can build any of the subprojects by specifying the target - e.g. 'make server' to build drone
  • Loading branch information
pstavirs committed Dec 18, 2015
1 parent 9cd92c4 commit 3755d2a
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions ost.pro
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS = \
extra \
rpc/pbrpc.pro \
common/ostproto.pro \
common/ostprotogui.pro \
server/drone.pro \
client/ostinato.pro \
binding/binding.pro
SUBDIRS = client server ostproto ostprotogui rpc binding extra

client.target = client
client.file = client/ostinato.pro
client.depends = ostproto ostprotogui rpc extra

server.target = server
server.file = server/drone.pro
server.depends = ostproto rpc

ostproto.file = common/ostproto.pro

ostprotogui.file = common/ostprotogui.pro
ostprotogui.depends = extra

rpc.file = rpc/pbrpc.pro

binding.target = binding
binding.depends = ostproto

0 comments on commit 3755d2a

Please sign in to comment.