changed executable name to match project name

This commit is contained in:
Kjistóf 2016-12-09 19:42:22 +01:00
parent 3c3acaaaa5
commit b68057f4f3
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.6)
project(cpp11NHF2_chat)
project(cpp11Chat)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Wno-switch")
@ -14,5 +14,5 @@ find_package(Qt5Widgets REQUIRED)
set(CMAKE_AUTOMOC ON)
set(SOURCE_FILES gui_chat.cpp chat_window.hpp chat_messages.hpp chat_networking.hpp check_policy.hpp)
add_executable(cpp11NHF2_chat ${SOURCE_FILES})
target_link_libraries(cpp11NHF2_chat Threads::Threads ${Boost_LIBRARIES} Qt5::Widgets)
add_executable(cpp11Chat ${SOURCE_FILES})
target_link_libraries(cpp11Chat Threads::Threads ${Boost_LIBRARIES} Qt5::Widgets)