From 6b59f8269fd879224a909da93fbd7b12a4670c82 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Tue, 25 Aug 2020 13:02:45 -0500 Subject: [PATCH] Rename project in CMakeLists.txt The CMakeLists.txt declared this project as BitShares and not Peerplays, which makes it confusing in IDEs. Rename it to be clear which project is open. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 671cfed3..4f68f529 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -# Defines BitShares library target. -project( BitShares ) +# Defines Peerplays library target. +project( Peerplays ) cmake_minimum_required( VERSION 2.8.12 ) set( BLOCKCHAIN_NAME "BitShares" )