Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ endif()

# Package information
set(PACKAGE_NAME "mcrouter")
if(NOT DEFINED PACKAGE_VERSION)
set(PACKAGE_VERSION "0.1.0-dev")
if(NOT DEFINED MCROUTER_PACKAGE_VERSION)
set(MCROUTER_PACKAGE_VERSION "0.1.0-dev")
endif()

project(${PACKAGE_NAME} CXX C)
Expand Down Expand Up @@ -109,7 +109,7 @@ configure_file(
# This file is included as "mcrouter/config.h" so it goes in mcrouter/ subdir
# of the build tree.

set(MCROUTER_PACKAGE_STRING "${PACKAGE_VERSION} ${PACKAGE_NAME}")
set(MCROUTER_PACKAGE_STRING "${MCROUTER_PACKAGE_VERSION} ${PACKAGE_NAME}")
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/CMake/config.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/mcrouter/config.h"
Expand Down
Loading