From c5d23f1a9ee3d1e52230e417ab24d09897cbaddb Mon Sep 17 00:00:00 2001 From: kongr45gpen <electrovesta@gmail.com> Date: Tue, 6 Aug 2019 22:07:28 +0300 Subject: [PATCH] Move main.cpp to the Platform/x86 directory Since main.cpp only refers to desktop content --- CMakeLists.txt | 1 - src/{ => Platform/x86}/main.cpp | 0 2 files changed, 1 deletion(-) rename src/{ => Platform/x86}/main.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 044b9c0d..b8d5802a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,6 @@ add_library(common OBJECT # Specify the .cpp files for the executables file(GLOB x86_main_SRC "src/Platform/x86/*.cpp") add_executable(ecss_services - src/main.cpp $<TARGET_OBJECTS:common> ${x86_main_SRC} ) diff --git a/src/main.cpp b/src/Platform/x86/main.cpp similarity index 100% rename from src/main.cpp rename to src/Platform/x86/main.cpp -- GitLab