From 151a4d83f420a7c8d47917cd05a33cff5416ab99 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 15 Jun 2017 17:01:36 +0200 Subject: [PATCH] Add .sln extension for the link to the Visual Studio solution. --- README.md | 2 +- cmake_builder/additional_steps.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3290b76a5..1855eb608 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Here are the general instructions to build linphone for desktop. The specific in python prepare.py -2. Open the generated Visual Studio solution `Project.lnk` and build it. +2. Open the generated Visual Studio solution `Project.sln.lnk` and build it. ## Known bugs and issues diff --git a/cmake_builder/additional_steps.cmake b/cmake_builder/additional_steps.cmake index 8488c67a8..66de22bf0 100644 --- a/cmake_builder/additional_steps.cmake +++ b/cmake_builder/additional_steps.cmake @@ -30,7 +30,7 @@ if(LINPHONE_BUILDER_TARGET STREQUAL linphoneqt AND WIN32) add_custom_target(linphoneqt_winshortcut ALL DEPENDS "${SHORTCUT_PATH}" TARGET_linphone_builder) # Create a shortcut to the solution file in the top directory - set(SHORTCUT_PATH "${CMAKE_SOURCE_DIR}/../../Project.lnk") + set(SHORTCUT_PATH "${CMAKE_SOURCE_DIR}/../../Project.sln.lnk") set(SHORTCUT_TARGET_PATH "${LINPHONE_BUILDER_WORK_DIR}/cmake/Project.sln") set(SHORTCUT_WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/../..") configure_file("${CMAKE_CURRENT_LIST_DIR}/linphone_package/winshortcut.vbs.in" "${CMAKE_CURRENT_BINARY_DIR}/solutionshortcut.vbs" @ONLY)