update file cmakelists
This commit is contained in:
58
sensor_msgs/test/CMakeFiles/CMakeError.log
Normal file
58
sensor_msgs/test/CMakeFiles/CMakeError.log
Normal file
@@ -0,0 +1,58 @@
|
||||
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
|
||||
Change Dir: /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_06ceb/fast && /usr/bin/make -f CMakeFiles/cmTC_06ceb.dir/build.make CMakeFiles/cmTC_06ceb.dir/build
|
||||
make[1]: Entering directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_06ceb.dir/src.c.o
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_06ceb.dir/src.c.o -c /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp/src.c
|
||||
Linking C executable cmTC_06ceb
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06ceb.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_06ceb.dir/src.c.o -o cmTC_06ceb
|
||||
/usr/bin/ld: CMakeFiles/cmTC_06ceb.dir/src.c.o: in function `main':
|
||||
src.c:(.text+0x46): undefined reference to `pthread_create'
|
||||
/usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
|
||||
/usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_06ceb.dir/build.make:87: cmTC_06ceb] Error 1
|
||||
make[1]: Leaving directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_06ceb/fast] Error 2
|
||||
|
||||
|
||||
Source file was:
|
||||
#include <pthread.h>
|
||||
|
||||
void* test_func(void* data)
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
pthread_t thread;
|
||||
pthread_create(&thread, NULL, test_func, NULL);
|
||||
pthread_detach(thread);
|
||||
pthread_join(thread, NULL);
|
||||
pthread_atfork(NULL, NULL, NULL);
|
||||
pthread_exit(NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Determining if the function pthread_create exists in the pthreads failed with the following output:
|
||||
Change Dir: /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_f43ef/fast && /usr/bin/make -f CMakeFiles/cmTC_f43ef.dir/build.make CMakeFiles/cmTC_f43ef.dir/build
|
||||
make[1]: Entering directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_f43ef.dir/CheckFunctionExists.c.o
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_f43ef.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
||||
Linking C executable cmTC_f43ef
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f43ef.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_f43ef.dir/CheckFunctionExists.c.o -o cmTC_f43ef -lpthreads
|
||||
/usr/bin/ld: cannot find -lpthreads
|
||||
collect2: error: ld returned 1 exit status
|
||||
make[1]: *** [CMakeFiles/cmTC_f43ef.dir/build.make:87: cmTC_f43ef] Error 1
|
||||
make[1]: Leaving directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
make: *** [Makefile:121: cmTC_f43ef/fast] Error 2
|
||||
|
||||
|
||||
|
||||
@@ -459,3 +459,31 @@ Parsed CXX implicit link information from above output:
|
||||
implicit fwks: []
|
||||
|
||||
|
||||
Determining if the include file pthread.h exists passed with the following output:
|
||||
Change Dir: /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_a2157/fast && /usr/bin/make -f CMakeFiles/cmTC_a2157.dir/build.make CMakeFiles/cmTC_a2157.dir/build
|
||||
make[1]: Entering directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_a2157.dir/CheckIncludeFile.c.o
|
||||
/usr/bin/cc -o CMakeFiles/cmTC_a2157.dir/CheckIncludeFile.c.o -c /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp/CheckIncludeFile.c
|
||||
Linking C executable cmTC_a2157
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a2157.dir/link.txt --verbose=1
|
||||
/usr/bin/cc CMakeFiles/cmTC_a2157.dir/CheckIncludeFile.c.o -o cmTC_a2157
|
||||
make[1]: Leaving directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
Determining if the function pthread_create exists in the pthread passed with the following output:
|
||||
Change Dir: /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/make cmTC_32b2b/fast && /usr/bin/make -f CMakeFiles/cmTC_32b2b.dir/build.make CMakeFiles/cmTC_32b2b.dir/build
|
||||
make[1]: Entering directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_32b2b.dir/CheckFunctionExists.c.o
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_32b2b.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
|
||||
Linking C executable cmTC_32b2b
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32b2b.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_32b2b.dir/CheckFunctionExists.c.o -o cmTC_32b2b -lpthread
|
||||
make[1]: Leaving directory '/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ set(CMAKE_MAKEFILE_DEPENDS
|
||||
"CMakeFiles/3.16.3/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/3.16.3/CMakeSystem.cmake"
|
||||
"/home/duongtd/robotics_core/common_msgs/std_msgs/CMakeLists.txt"
|
||||
"/home/duongtd/robotics_core/robot_time/CMakeLists.txt"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCXXInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
||||
@@ -21,10 +22,18 @@ set(CMAKE_MAKEFILE_DEPENDS
|
||||
"/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckCSourceCompiles.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckIncludeFile.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/CheckLibraryExists.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindGTest.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/FindThreads.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/GoogleTest.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake"
|
||||
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
@@ -43,9 +52,13 @@ set(CMAKE_MAKEFILE_OUTPUTS
|
||||
set(CMAKE_MAKEFILE_PRODUCTS
|
||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"std_msgs_build/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
"robot_time_build/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
)
|
||||
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/test_battery_state.dir/DependInfo.cmake"
|
||||
"robot_time_build/CMakeFiles/robot_duration_test.dir/DependInfo.cmake"
|
||||
"robot_time_build/CMakeFiles/robot_time_test.dir/DependInfo.cmake"
|
||||
"robot_time_build/CMakeFiles/robot_time.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
@@ -69,21 +69,43 @@ clean: std_msgs_build/clean
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory robot_time_build
|
||||
|
||||
# Recursive "all" directory target.
|
||||
robot_time_build/all: robot_time_build/CMakeFiles/robot_duration_test.dir/all
|
||||
robot_time_build/all: robot_time_build/CMakeFiles/robot_time_test.dir/all
|
||||
robot_time_build/all: robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
|
||||
.PHONY : robot_time_build/all
|
||||
|
||||
# Recursive "preinstall" directory target.
|
||||
robot_time_build/preinstall:
|
||||
|
||||
.PHONY : robot_time_build/preinstall
|
||||
|
||||
# Recursive "clean" directory target.
|
||||
robot_time_build/clean: robot_time_build/CMakeFiles/robot_duration_test.dir/clean
|
||||
robot_time_build/clean: robot_time_build/CMakeFiles/robot_time_test.dir/clean
|
||||
robot_time_build/clean: robot_time_build/CMakeFiles/robot_time.dir/clean
|
||||
|
||||
.PHONY : robot_time_build/clean
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for directory std_msgs_build
|
||||
|
||||
# Recursive "all" directory target.
|
||||
std_msgs_build/all:
|
||||
std_msgs_build/all: robot_time_build/all
|
||||
|
||||
.PHONY : std_msgs_build/all
|
||||
|
||||
# Recursive "preinstall" directory target.
|
||||
std_msgs_build/preinstall:
|
||||
std_msgs_build/preinstall: robot_time_build/preinstall
|
||||
|
||||
.PHONY : std_msgs_build/preinstall
|
||||
|
||||
# Recursive "clean" directory target.
|
||||
std_msgs_build/clean:
|
||||
std_msgs_build/clean: robot_time_build/clean
|
||||
|
||||
.PHONY : std_msgs_build/clean
|
||||
|
||||
@@ -91,15 +113,15 @@ std_msgs_build/clean:
|
||||
# Target rules for target CMakeFiles/test_battery_state.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/test_battery_state.dir/all:
|
||||
CMakeFiles/test_battery_state.dir/all: robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
$(MAKE) -f CMakeFiles/test_battery_state.dir/build.make CMakeFiles/test_battery_state.dir/depend
|
||||
$(MAKE) -f CMakeFiles/test_battery_state.dir/build.make CMakeFiles/test_battery_state.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=1,2 "Built target test_battery_state"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=9,10 "Built target test_battery_state"
|
||||
.PHONY : CMakeFiles/test_battery_state.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/test_battery_state.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 2
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 6
|
||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/test_battery_state.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/test_battery_state.dir/rule
|
||||
@@ -114,6 +136,87 @@ CMakeFiles/test_battery_state.dir/clean:
|
||||
$(MAKE) -f CMakeFiles/test_battery_state.dir/build.make CMakeFiles/test_battery_state.dir/clean
|
||||
.PHONY : CMakeFiles/test_battery_state.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target robot_time_build/CMakeFiles/robot_duration_test.dir
|
||||
|
||||
# All Build rule for target.
|
||||
robot_time_build/CMakeFiles/robot_duration_test.dir/all: robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_duration_test.dir/build.make robot_time_build/CMakeFiles/robot_duration_test.dir/depend
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_duration_test.dir/build.make robot_time_build/CMakeFiles/robot_duration_test.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=1,2 "Built target robot_duration_test"
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_duration_test.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
robot_time_build/CMakeFiles/robot_duration_test.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 6
|
||||
$(MAKE) -f CMakeFiles/Makefile2 robot_time_build/CMakeFiles/robot_duration_test.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 0
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_duration_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
robot_duration_test: robot_time_build/CMakeFiles/robot_duration_test.dir/rule
|
||||
|
||||
.PHONY : robot_duration_test
|
||||
|
||||
# clean rule for target.
|
||||
robot_time_build/CMakeFiles/robot_duration_test.dir/clean:
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_duration_test.dir/build.make robot_time_build/CMakeFiles/robot_duration_test.dir/clean
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_duration_test.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target robot_time_build/CMakeFiles/robot_time_test.dir
|
||||
|
||||
# All Build rule for target.
|
||||
robot_time_build/CMakeFiles/robot_time_test.dir/all: robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time_test.dir/build.make robot_time_build/CMakeFiles/robot_time_test.dir/depend
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time_test.dir/build.make robot_time_build/CMakeFiles/robot_time_test.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=7,8 "Built target robot_time_test"
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time_test.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
robot_time_build/CMakeFiles/robot_time_test.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 6
|
||||
$(MAKE) -f CMakeFiles/Makefile2 robot_time_build/CMakeFiles/robot_time_test.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 0
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
robot_time_test: robot_time_build/CMakeFiles/robot_time_test.dir/rule
|
||||
|
||||
.PHONY : robot_time_test
|
||||
|
||||
# clean rule for target.
|
||||
robot_time_build/CMakeFiles/robot_time_test.dir/clean:
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time_test.dir/build.make robot_time_build/CMakeFiles/robot_time_test.dir/clean
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time_test.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target robot_time_build/CMakeFiles/robot_time.dir
|
||||
|
||||
# All Build rule for target.
|
||||
robot_time_build/CMakeFiles/robot_time.dir/all:
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time.dir/build.make robot_time_build/CMakeFiles/robot_time.dir/depend
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time.dir/build.make robot_time_build/CMakeFiles/robot_time.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=3,4,5,6 "Built target robot_time"
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
robot_time_build/CMakeFiles/robot_time.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 4
|
||||
$(MAKE) -f CMakeFiles/Makefile2 robot_time_build/CMakeFiles/robot_time.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles 0
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
robot_time: robot_time_build/CMakeFiles/robot_time.dir/rule
|
||||
|
||||
.PHONY : robot_time
|
||||
|
||||
# clean rule for target.
|
||||
robot_time_build/CMakeFiles/robot_time.dir/clean:
|
||||
$(MAKE) -f robot_time_build/CMakeFiles/robot_time.dir/build.make robot_time_build/CMakeFiles/robot_time.dir/clean
|
||||
.PHONY : robot_time_build/CMakeFiles/robot_time.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
|
||||
@@ -1,5 +1,22 @@
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/install/strip.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/install/local.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/install.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/list_install_components.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/rebuild_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/edit_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles/test_battery_state.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/install/strip.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/install/local.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/install.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/list_install_components.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/rebuild_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/std_msgs_build/CMakeFiles/edit_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/install/strip.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/install/local.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/install.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/list_install_components.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/rebuild_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/edit_cache.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/robot_duration_test.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/robot_time_test.dir
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/robot_time.dir
|
||||
|
||||
@@ -1 +1 @@
|
||||
2
|
||||
10
|
||||
|
||||
@@ -55,14 +55,58 @@ sensor_msgs/PointCloud2.h
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/sensor_msgs/PointCloud2.h
|
||||
iostream
|
||||
-
|
||||
yaml-cpp/yaml.h
|
||||
-
|
||||
|
||||
/home/duongtd/robotics_core/common_msgs/std_msgs/include/std_msgs/Header.h
|
||||
string
|
||||
-
|
||||
chrono
|
||||
-
|
||||
cstdint
|
||||
-
|
||||
robot/time.h
|
||||
-
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/duration.h
|
||||
iostream
|
||||
-
|
||||
math.h
|
||||
-
|
||||
stdexcept
|
||||
-
|
||||
climits
|
||||
-
|
||||
stdint.h
|
||||
-
|
||||
robot_time_decl.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/robot_time_decl.h
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/exception.h
|
||||
stdexcept
|
||||
-
|
||||
string
|
||||
-
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/macros.h
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/platform.h
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/robot_time_decl.h
|
||||
robot/macros.h
|
||||
-
|
||||
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/time.h
|
||||
robot/platform.h
|
||||
-
|
||||
iostream
|
||||
-
|
||||
cmath
|
||||
-
|
||||
robot/exception.h
|
||||
-
|
||||
duration.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/duration.h
|
||||
robot_time_decl.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/robot_time_decl.h
|
||||
sys/timeb.h
|
||||
-
|
||||
sys/time.h
|
||||
-
|
||||
|
||||
|
||||
@@ -12,10 +12,13 @@ set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||
"../include"
|
||||
"/home/duongtd/robotics_core/common_msgs/std_msgs/include"
|
||||
"../../robot_time/include"
|
||||
"/home/duongtd/robotics_core/robot_time/include"
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
"/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/robot_time_build/CMakeFiles/robot_time.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
|
||||
@@ -79,6 +79,7 @@ test_battery_state_EXTERNAL_OBJECTS =
|
||||
|
||||
test_battery_state: CMakeFiles/test_battery_state.dir/main.cpp.o
|
||||
test_battery_state: CMakeFiles/test_battery_state.dir/build.make
|
||||
test_battery_state: robot_time_build/librobot_time.a
|
||||
test_battery_state: CMakeFiles/test_battery_state.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable test_battery_state"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_battery_state.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
@@ -9,3 +9,9 @@ CMakeFiles/test_battery_state.dir/main.cpp.o
|
||||
../include/sensor_msgs/PointField.h
|
||||
/home/duongtd/robotics_core/common_msgs/sensor_msgs/test/main.cpp
|
||||
/home/duongtd/robotics_core/common_msgs/std_msgs/include/std_msgs/Header.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/duration.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/exception.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/macros.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/platform.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/robot_time_decl.h
|
||||
/home/duongtd/robotics_core/robot_time/include/robot/time.h
|
||||
|
||||
@@ -8,4 +8,10 @@ CMakeFiles/test_battery_state.dir/main.cpp.o: ../include/sensor_msgs/PointCloud2
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: ../include/sensor_msgs/PointField.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: main.cpp
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/common_msgs/std_msgs/include/std_msgs/Header.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/duration.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/exception.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/macros.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/platform.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/robot_time_decl.h
|
||||
CMakeFiles/test_battery_state.dir/main.cpp.o: /home/duongtd/robotics_core/robot_time/include/robot/time.h
|
||||
|
||||
|
||||
@@ -6,5 +6,5 @@ CXX_FLAGS = -std=gnu++17
|
||||
|
||||
CXX_DEFINES =
|
||||
|
||||
CXX_INCLUDES = -I/home/duongtd/robotics_core/common_msgs/sensor_msgs/include -I/home/duongtd/robotics_core/common_msgs/std_msgs/include
|
||||
CXX_INCLUDES = -I/home/duongtd/robotics_core/common_msgs/sensor_msgs/include -I/home/duongtd/robotics_core/common_msgs/std_msgs/include -I/home/duongtd/robotics_core/common_msgs/sensor_msgs/../robot_time/include -I/home/duongtd/robotics_core/robot_time/include
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
/usr/bin/c++ CMakeFiles/test_battery_state.dir/main.cpp.o -o test_battery_state -lyaml-cpp
|
||||
/usr/bin/c++ CMakeFiles/test_battery_state.dir/main.cpp.o -o test_battery_state robot_time_build/librobot_time.a
|
||||
|
||||
Binary file not shown.
@@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
CMAKE_PROGRESS_1 = 9
|
||||
CMAKE_PROGRESS_2 = 10
|
||||
|
||||
|
||||
Reference in New Issue
Block a user