Skip to content
Snippets Groups Projects
Commit 34a55c77 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Use armarx_generate_and_add_component_executable

parent e5f0139b
No related branches found
No related tags found
No related merge requests found
add_subdirectory(ArmarXGui) add_subdirectory(ArmarXGui)
add_subdirectory(RemoteGuiExample)
add_subdirectory(RemoteGuiProvider)
add_subdirectory(RemoteGuiExample)
\ No newline at end of file
armarx_component_set_name("RemoteGuiProviderApp")
set(COMPONENT_LIBS RemoteGuiProvider)
armarx_add_component_executable("main.cpp")
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package ArmarXGui::application::RemoteGuiProvider
* @author Fabian Paus ( fabian dot paus at kit dot edu )
* @date 2018
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include <ArmarXGui/components/RemoteGuiProvider/RemoteGuiProvider.h>
#include <ArmarXCore/core/application/Application.h>
#include <ArmarXCore/core/Component.h>
#include <ArmarXCore/core/logging/Logging.h>
int main(int argc, char* argv[])
{
return armarx::runSimpleComponentApp < armarx::RemoteGuiProvider > (argc, argv, "RemoteGuiProvider");
}
...@@ -17,3 +17,5 @@ target_include_directories(RemoteGuiProvider PUBLIC ${Simox_INCLUDE_DIRS}) ...@@ -17,3 +17,5 @@ target_include_directories(RemoteGuiProvider PUBLIC ${Simox_INCLUDE_DIRS})
# add unit tests # add unit tests
add_subdirectory(test) add_subdirectory(test)
armarx_generate_and_add_component_executable(APPLICATION_APP_SUFFIX)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment