Skip to content

Commit

Permalink
Fix cmake version and project name
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheinkman committed Mar 6, 2018
1 parent 5aca467 commit c9377d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -----------------------------------------------------------------------------

cmake_minimum_required(VERSION 3.3)
project(nupic_core_main CXX)
project(nupic_core CXX)

set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -----------------------------------------------------------------------------

cmake_minimum_required(VERSION 3.3)
project(nupic_core_main CXX)
project(nupic_core CXX)

set(CMAKE_VERBOSE_MAKEFILE OFF)
include(GNUInstallDirs)
Expand Down
4 changes: 2 additions & 2 deletions src/NupicLibraryUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

# Utilities for manipulating libraries

cmake_minimum_required(VERSION 2.8)
project(nupic_core_library_utils CXX)
cmake_minimum_required(VERSION 3.3)
project(nupic_core CXX)


# function MERGE_STATIC_LIBRARIES
Expand Down

0 comments on commit c9377d5

Please sign in to comment.