From 20b4e69c3e6234bd422da9ec3dc7ee313769872e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Fri, 16 Jul 2021 20:44:40 +0200 Subject: [PATCH] Rename too generic "activate" util in "adept_activate" --- include/libgourou.h | 2 +- utils/Makefile | 4 ++-- utils/{activate.cpp => adept_activate.cpp} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename utils/{activate.cpp => adept_activate.cpp} (100%) diff --git a/include/libgourou.h b/include/libgourou.h index 5473e67..628a63b 100644 --- a/include/libgourou.h +++ b/include/libgourou.h @@ -40,7 +40,7 @@ #define ACS_SERVER "http://adeactivate.adobe.com/adept" #endif -#define LIBGOUROU_VERSION "0.2.2" +#define LIBGOUROU_VERSION "0.3" namespace gourou { diff --git a/utils/Makefile b/utils/Makefile index a260e2d..701d275 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,5 +1,5 @@ -TARGETS=acsmdownloader activate +TARGETS=acsmdownloader adept_activate CXXFLAGS=-Wall `pkg-config --cflags Qt5Core Qt5Network` -fPIC -I$(ROOT)/include -I$(ROOT)/lib/pugixml/src/ ifneq ($(STATIC_UTILS),) @@ -19,7 +19,7 @@ all: $(TARGETS) acsmdownloader: drmprocessorclientimpl.cpp acsmdownloader.cpp $(CXX) $(CXXFLAGS) $^ $(LDFLAGS) -o $@ -activate: drmprocessorclientimpl.cpp activate.cpp +adept_activate: drmprocessorclientimpl.cpp adept_activate.cpp $(CXX) $(CXXFLAGS) $^ $(LDFLAGS) -o $@ clean: diff --git a/utils/activate.cpp b/utils/adept_activate.cpp similarity index 100% rename from utils/activate.cpp rename to utils/adept_activate.cpp