-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f993dc
commit 9ce1c4c
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# "build_order" lists packages in the order you'd want CMake to see | ||
# them (via "add_subdirectory") during a simultaneous build. This is | ||
# due to their dependencies: e.g., you'd want CMake to see | ||
# daq-buildtools first in order to create daq-buildtoolsConfig.cmake | ||
# so "find_package(daq-builtools)" will work for all the other | ||
# packages, and so on. If a new package is introduced into the | ||
# development area, the developer is encouraged to add it to its | ||
# appropriate place in this list | ||
|
||
|
||
set(build_order "daq-cmake" | ||
"ers" | ||
"erskafka" | ||
"logging" | ||
"opmonlib" | ||
"cmdlib" | ||
"rcif" | ||
"restcmd" | ||
"utilities" | ||
"ipm" | ||
"serialization" | ||
"iomanager" | ||
"okssystem" | ||
"oksdbinterfaces" | ||
"oks" | ||
"genconfig" | ||
"oksutils" | ||
"dal" | ||
"coredal" | ||
"appdal" | ||
"oksconfig" | ||
"dbe" | ||
"appfwk" | ||
"daphnemodules" | ||
"hermesmodules" | ||
"daqconf" | ||
"fddaqconf" | ||
"nddaqconf" | ||
"listrev" | ||
"detdataformats" | ||
"trgdataformats" | ||
"daqdataformats" | ||
"detchannelmaps" | ||
"dfmessages" | ||
"triggeralgs" | ||
"timing" | ||
"timinglibs" | ||
"hdf5libs" | ||
"trgtools" | ||
"readoutlibs" | ||
"hsilibs" | ||
"trigger" | ||
"readoutmodules" | ||
"dfmodules" | ||
"kafkaopmon" | ||
# FD packages | ||
"fddetdataformats" | ||
"fdreadoutlibs" | ||
"fdreadoutmodules" | ||
"tpgtools" | ||
"flxlibs" | ||
"dqm" | ||
"wibmod" | ||
"sspmodules" | ||
"uhallibs" | ||
"rawdatautils" | ||
"ctbmodules" | ||
"dpdklibs" | ||
"snbmodules" | ||
"daqsystemtest" | ||
# ND packages | ||
"nddetdataformats" | ||
"ndreadoutlibs" | ||
"ndreadoutmodules" | ||
"lbrulibs" | ||
) | ||
|