Skip to content

Commit

Permalink
cmake conventions encourage all-caps project names: ${<project>_SOURC…
Browse files Browse the repository at this point in the history
…E_DIR}, etc.
  • Loading branch information
Chip Salzenberg committed Oct 16, 2013
1 parent 7ff2aeb commit 05012d1
Show file tree
Hide file tree
Showing 4 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
@@ -1,4 +1,4 @@
project(ten)
project(TEN)
cmake_minimum_required(VERSION 2.8)
enable_testing()

Expand Down
2 changes: 1 addition & 1 deletion double-conversion/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project(DOUBLE_CONVERSION)
cmake_minimum_required(VERSION 2.8)
project(double-conversion)

# pick a version #
set(double-conversion_VERSION
Expand Down
2 changes: 1 addition & 1 deletion glog/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(glog)
project(GLOG)
cmake_minimum_required(VERSION 2.8)

add_definitions(-DSIZEOF_VOID_P=${CMAKE_SIZEOF_VOID_P})
Expand Down
2 changes: 1 addition & 1 deletion msgpack/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(msgpack)
project(MSGPACK)
cmake_minimum_required(VERSION 2.8)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_library(msgpack STATIC
Expand Down

0 comments on commit 05012d1

Please sign in to comment.