diff --git a/CMakeLists.txt b/CMakeLists.txt index a1f286d..ddec7ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,6 @@ SET(CMAKE_VERBOSE_MAKEFILE ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # N2n release information -set(N2N_OSNAME ${CMAKE_SYSTEM_NAME}) execute_process( COMMAND scripts/version.sh WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} @@ -28,7 +27,7 @@ string(STRIP "${PACKAGE_VERSION}" PACKAGE_VERSION) MESSAGE(STATUS "Build for version: ${PACKAGE_VERSION}") add_definitions(-DCMAKE_BUILD) -add_definitions(-DPACKAGE_OSNAME="${N2N_OSNAME}" -DN2N_OSNAME="${N2N_OSNAME}") +add_definitions(-DPACKAGE_OSNAME="${CMAKE_SYSTEM_NAME}") add_definitions(-DPACKAGE_VERSION="${PACKAGE_VERSION}") diff --git a/win32/winconfig.h b/win32/winconfig.h index 8bfcb49..aa9794a 100644 --- a/win32/winconfig.h +++ b/win32/winconfig.h @@ -2,7 +2,7 @@ /* OS name */ #ifndef PACKAGE_OSNAME -#define PACKAGE_OSNAME N2N_OSNAME +#define PACKAGE_OSNAME "windows" #endif /* Define to the version of this package. */