aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPiotr Krysik <pkrysik@elka.pw.edu.pl>2020-02-16 08:58:28 +0100
committerPiotr Krysik <ptrkrysik@gmail.com>2021-05-03 07:14:00 +0200
commitdf417739b03546c327871d6ea17b61aca06cec70 (patch)
treea1169aaf245c17c30be5e318cf9eedb9f134b0ae /include
parent21b0f7d228c532adca6dc9687d9321f9889ce21a (diff)
cmake: make formatting of install statements follow one pattern
Diffstat (limited to 'include')
-rw-r--r--include/grgsm/CMakeLists.txt3
-rw-r--r--include/grgsm/decoding/CMakeLists.txt7
-rw-r--r--include/grgsm/decryption/CMakeLists.txt6
-rw-r--r--include/grgsm/demapping/CMakeLists.txt3
-rw-r--r--include/grgsm/flow_control/CMakeLists.txt8
-rw-r--r--include/grgsm/misc_utils/CMakeLists.txt6
-rw-r--r--include/grgsm/qa_utils/CMakeLists.txt6
-rw-r--r--include/grgsm/receiver/CMakeLists.txt6
-rw-r--r--include/grgsm/transmitter/CMakeLists.txt5
-rw-r--r--include/grgsm/trx/CMakeLists.txt3
10 files changed, 34 insertions, 19 deletions
diff --git a/include/grgsm/CMakeLists.txt b/include/grgsm/CMakeLists.txt
index 2982ef1..2f64ff4 100644
--- a/include/grgsm/CMakeLists.txt
+++ b/include/grgsm/CMakeLists.txt
@@ -20,7 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
plotting.hpp
api.h
gsmtap.h
diff --git a/include/grgsm/decoding/CMakeLists.txt b/include/grgsm/decoding/CMakeLists.txt
index 1014955..6210dad 100644
--- a/include/grgsm/decoding/CMakeLists.txt
+++ b/include/grgsm/decoding/CMakeLists.txt
@@ -20,9 +20,10 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
- control_channels_decoder.h
+install(
+ FILES
+ control_channels_decoder.h
tch_f_decoder.h
tch_h_decoder.h
- DESTINATION include/grgsm/decoding
+ DESTINATION include/grgsm/decoding
)
diff --git a/include/grgsm/decryption/CMakeLists.txt b/include/grgsm/decryption/CMakeLists.txt
index 3a0c6b6..f267201 100644
--- a/include/grgsm/decryption/CMakeLists.txt
+++ b/include/grgsm/decryption/CMakeLists.txt
@@ -20,6 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
- decryption.h DESTINATION include/grgsm/decoding
+install(
+ FILES
+ decryption.h
+ DESTINATION include/grgsm/decoding
)
diff --git a/include/grgsm/demapping/CMakeLists.txt b/include/grgsm/demapping/CMakeLists.txt
index 0165d24..25462fb 100644
--- a/include/grgsm/demapping/CMakeLists.txt
+++ b/include/grgsm/demapping/CMakeLists.txt
@@ -20,7 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
universal_ctrl_chans_demapper.h
tch_f_chans_demapper.h
tch_h_chans_demapper.h
diff --git a/include/grgsm/flow_control/CMakeLists.txt b/include/grgsm/flow_control/CMakeLists.txt
index d86f1c7..6feee61 100644
--- a/include/grgsm/flow_control/CMakeLists.txt
+++ b/include/grgsm/flow_control/CMakeLists.txt
@@ -20,7 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
common.h
burst_timeslot_splitter.h
burst_sdcch_subslot_splitter.h
@@ -28,6 +29,7 @@ install(FILES
burst_sdcch_subslot_filter.h
burst_fnr_filter.h
burst_type_filter.h
- dummy_burst_filter.h
- uplink_downlink_splitter.h DESTINATION include/grgsm/flow_control
+ dummy_burst_filter.h
+ uplink_downlink_splitter.h
+ DESTINATION include/grgsm/flow_control
)
diff --git a/include/grgsm/misc_utils/CMakeLists.txt b/include/grgsm/misc_utils/CMakeLists.txt
index f8d8cbc..b151527 100644
--- a/include/grgsm/misc_utils/CMakeLists.txt
+++ b/include/grgsm/misc_utils/CMakeLists.txt
@@ -20,7 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
bursts_printer.h
burst_file_source.h
burst_file_sink.h
@@ -38,5 +39,6 @@ install(FILES
burst_to_fn_time.h
controlled_fractional_resampler_cc.h
time_spec.h
- fn_time.h DESTINATION include/grgsm/misc_utils
+ fn_time.h
+ DESTINATION include/grgsm/misc_utils
)
diff --git a/include/grgsm/qa_utils/CMakeLists.txt b/include/grgsm/qa_utils/CMakeLists.txt
index 44bbbfb..a74a358 100644
--- a/include/grgsm/qa_utils/CMakeLists.txt
+++ b/include/grgsm/qa_utils/CMakeLists.txt
@@ -20,9 +20,11 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
burst_sink.h
burst_source.h
message_source.h
- message_sink.h DESTINATION include/grgsm/qa_utils
+ message_sink.h
+ DESTINATION include/grgsm/qa_utils
)
diff --git a/include/grgsm/receiver/CMakeLists.txt b/include/grgsm/receiver/CMakeLists.txt
index bb4515d..8bf6370 100644
--- a/include/grgsm/receiver/CMakeLists.txt
+++ b/include/grgsm/receiver/CMakeLists.txt
@@ -20,8 +20,10 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
clock_offset_control.h
cx_channel_hopper.h
- receiver.h DESTINATION include/grgsm/receiver
+ receiver.h
+ DESTINATION include/grgsm/receiver
)
diff --git a/include/grgsm/transmitter/CMakeLists.txt b/include/grgsm/transmitter/CMakeLists.txt
index fab6f7c..cdd140d 100644
--- a/include/grgsm/transmitter/CMakeLists.txt
+++ b/include/grgsm/transmitter/CMakeLists.txt
@@ -20,8 +20,9 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
- txtime_setter.h
+install(
+ FILES
+ txtime_setter.h
preprocess_tx_burst.h
gen_test_ab.h
DESTINATION include/grgsm/transmitter
diff --git a/include/grgsm/trx/CMakeLists.txt b/include/grgsm/trx/CMakeLists.txt
index a9847dd..0869701 100644
--- a/include/grgsm/trx/CMakeLists.txt
+++ b/include/grgsm/trx/CMakeLists.txt
@@ -20,7 +20,8 @@
########################################################################
# Install public header files
########################################################################
-install(FILES
+install(
+ FILES
trx_burst_if.h
DESTINATION include/grgsm/trx
)