From 97b87263d9265220279cdf09d810e82d1c2434ca Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Wed, 6 Feb 2019 14:18:20 -0800 Subject: [PATCH] Remove dummy executable Previously used to test compilation of rcl_action headers. Signed-off-by: Jacob Perron --- rcl_action/CMakeLists.txt | 4 ---- rcl_action/src/test_compile_headers.c | 21 --------------------- 2 files changed, 25 deletions(-) delete mode 100644 rcl_action/src/test_compile_headers.c diff --git a/rcl_action/CMakeLists.txt b/rcl_action/CMakeLists.txt index 8c26d63..aa2c0a3 100644 --- a/rcl_action/CMakeLists.txt +++ b/rcl_action/CMakeLists.txt @@ -31,10 +31,6 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wall -Wextra -Wpedantic) endif() -add_executable(test_compile_headers - src/test_compile_headers.c -) - set(rcl_action_sources src/${PROJECT_NAME}/action_client.c src/${PROJECT_NAME}/action_server.c diff --git a/rcl_action/src/test_compile_headers.c b/rcl_action/src/test_compile_headers.c deleted file mode 100644 index 4400604..0000000 --- a/rcl_action/src/test_compile_headers.c +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2018 Open Source Robotics Foundation, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -#include "rcl_action/rcl_action.h" - - -int main(void) -{ - return 0; -}