Parcourir la source

Remove unused main program

Eric Ramat il y a 4 ans
Parent
commit
4691d00133
3 fichiers modifiés avec 0 ajouts et 47 suppressions
  1. 0 1
      src/CMakeLists.txt
  2. 0 16
      src/apps/CMakeLists.txt
  3. 0 30
      src/apps/main.cpp

+ 0 - 1
src/CMakeLists.txt

@@ -5,5 +5,4 @@
 #    message("TRACE off")
 #ENDIF ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
 
-ADD_SUBDIRECTORY(apps)
 ADD_SUBDIRECTORY(artis-star)

+ 0 - 16
src/apps/CMakeLists.txt

@@ -1,16 +0,0 @@
-INCLUDE_DIRECTORIES(
-        ${ARTIS_BINARY_DIR}/src
-        ${ARTIS_SOURCE_DIR}/src
-        ${Boost_INCLUDE_DIRS})
-
-LINK_DIRECTORIES(
-        ${Boost_LIBRARY_DIRS})
-
-ADD_EXECUTABLE(artis-star main.cpp ${MIXED_TESTS_HPP})
-SET_TARGET_PROPERTIES(artis-star PROPERTIES ${ARTIS_APP_PROPERTIES})
-
-TARGET_LINK_LIBRARIES(artis-star
-        ${Boost_SYSTEM_LIBRARY}
-        ${Boost_TIMER_LIBRARY})
-
-INSTALL(TARGETS artis-star DESTINATION bin)

+ 0 - 30
src/apps/main.cpp

@@ -1,30 +0,0 @@
-/**
- * @file app/main.cpp
- * @author The ARTIS Development Team
- * See the AUTHORS or Authors.txt file
- */
-
-/*
- * ARTIS - the multimodeling and simulation environment
- * This file is a part of the ARTIS environment
- *
- * Copyright (C) 2013-2019 ULCO http://www.univ-littoral.fr
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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/>.
- */
-
-int main()
-{
-  return 0;
-}