Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 2b56c89

Browse files
authored
Minor cmake changes for cleaner log/output (#214)
* Minor cmake changes for cleaner log/output * README with travis CI status
1 parent 5d42663 commit 2b56c89

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CMake/AddMod2cSubmodule.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# =============================================================================
66

77
include(ExternalProject)
8-
include(FindPkgConfig)
98

9+
find_package(FindPkgConfig QUIET)
1010
find_path(MOD2C_PROJ NAMES CMakeLists.txt PATHS "${CORENEURON_PROJECT_SOURCE_DIR}/external/mod2c")
1111
find_package_handle_standard_args(MOD2C REQUIRED_VARS MOD2C_PROJ)
1212

CMake/AddNmodlSubmodule.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# See top-level LICENSE file for details.
55
# =============================================================================
66

7-
include(FindPkgConfig)
87

8+
find_package(FindPkgConfig QUIET)
99
find_path(NMODL_PROJ NAMES CMakeLists.txt PATHS "${CORENEURON_PROJECT_SOURCE_DIR}/external/nmodl")
1010
find_package_handle_standard_args(NMODL REQUIRED_VARS NMODL_PROJ)
1111

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ include(ClangFormatHelper)
8181
# build mod files for coreneuron
8282
add_definitions(-DCORENEURON_BUILD)
8383

84+
set(CMAKE_REQUIRED_QUIET TRUE)
8485
check_include_files(malloc.h have_malloc_h)
8586
if(have_malloc_h)
8687
add_definitions("-DHAVE_MALLOC_H")
@@ -220,7 +221,6 @@ if(cmake_generator_tolower MATCHES "makefile")
220221
message(STATUS "Command | Description")
221222
message(STATUS "--------------------+--------------------------------------------------------")
222223
message(STATUS "make install | Will install CoreNEURON to: ${CMAKE_INSTALL_PREFIX}")
223-
message(STATUS "make uninstall | Removes files installed by make install")
224224
message(STATUS "--------------------+--------------------------------------------------------")
225225
message(STATUS " Build option | Status")
226226
message(STATUS "--------------------+--------------------------------------------------------")

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/BlueBrain/CoreNeuron.svg?branch=master)](https://travis-ci.org/BlueBrain/CoreNeuron)
2+
13
# CoreNEURON
24
> Optimised simulator engine for [NEURON](https://www.neuron.yale.edu/neuron/)
35

external/mod2c

Submodule mod2c updated 1 file

0 commit comments

Comments
 (0)