Skip to content

Commit 9f1a7b1

Browse files
authored
Add enable_language to cmake call so cmake_utils could be found (#18)
Signed-off-by: jparisu <[email protected]>
1 parent 04c0209 commit 9f1a7b1

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

docs/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
###############################################################################
1818
cmake_minimum_required(VERSION 3.5)
1919

20+
# Done this to set machine architecture and be able to call cmake_utils
21+
enable_language(CXX)
22+
2023
###############################################################################
2124
# Find package cmake_utils
2225
###############################################################################

fastddsspy_participants/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
###############################################################################
1818
cmake_minimum_required(VERSION 3.5)
1919

20+
# Done this to set machine architecture and be able to call cmake_utils
21+
enable_language(CXX)
22+
2023
###############################################################################
2124
# Find package cmake_utils
2225
###############################################################################

fastddsspy_tool/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
###############################################################################
1818
cmake_minimum_required(VERSION 3.5)
1919

20+
# Done this to set machine architecture and be able to call cmake_utils
21+
enable_language(CXX)
22+
2023
###############################################################################
2124
# Find package cmake_utils
2225
###############################################################################

fastddsspy_yaml/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
###############################################################################
1818
cmake_minimum_required(VERSION 3.5)
1919

20+
# Done this to set machine architecture and be able to call cmake_utils
21+
enable_language(CXX)
22+
2023
###############################################################################
2124
# Find package cmake_utils
2225
###############################################################################

0 commit comments

Comments
 (0)