aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-15 23:05:10 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-15 23:05:10 +0300
commit84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf (patch)
treea3449960508c9da666c792a49f1f98dbe351d589 /utils
parentswitch from Boost.Nowide to winapi-utf8 (diff)
downloadwinapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.tar.gz
winapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.zip
rename the project
Diffstat (limited to 'utils')
-rw-r--r--utils/CMakeLists.txt2
-rw-r--r--utils/addr2name.cpp4
-rw-r--r--utils/command_line.hpp4
-rw-r--r--utils/enum_symbols.cpp4
-rw-r--r--utils/name2addr.cpp4
-rw-r--r--utils/pdb_descr.hpp4
6 files changed, 11 insertions, 11 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index 70b3c82..3b7f865 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -2,7 +2,7 @@ find_package(Boost REQUIRED COMPONENTS filesystem program_options)
function(add_util name src)
add_executable("${name}" ${src})
- target_link_libraries("${name}" PRIVATE pdb_repo)
+ target_link_libraries("${name}" PRIVATE winapi_debug)
target_link_libraries("${name}" PRIVATE Boost::disable_autolinking Boost::filesystem Boost::program_options)
install(TARGETS "${name}" RUNTIME DESTINATION bin)
install_pdbs(TARGETS "${name}" DESTINATION bin)
diff --git a/utils/addr2name.cpp b/utils/addr2name.cpp
index acb992c..6aba1e6 100644
--- a/utils/addr2name.cpp
+++ b/utils/addr2name.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "PDB repository" project.
-// For details, see https://github.com/egor-tensin/pdb-repo.
+// This file is part of the "winapi-debug" project.
+// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#include "command_line.hpp"
diff --git a/utils/command_line.hpp b/utils/command_line.hpp
index d1f6e2e..7537d51 100644
--- a/utils/command_line.hpp
+++ b/utils/command_line.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "PDB repository" project.
-// For details, see https://github.com/egor-tensin/pdb-repo.
+// This file is part of the "winapi-debug" project.
+// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#pragma once
diff --git a/utils/enum_symbols.cpp b/utils/enum_symbols.cpp
index 626816e..d8f9b98 100644
--- a/utils/enum_symbols.cpp
+++ b/utils/enum_symbols.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "PDB repository" project.
-// For details, see https://github.com/egor-tensin/pdb-repo.
+// This file is part of the "winapi-debug" project.
+// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#include "command_line.hpp"
diff --git a/utils/name2addr.cpp b/utils/name2addr.cpp
index d0c4293..cae0f39 100644
--- a/utils/name2addr.cpp
+++ b/utils/name2addr.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "PDB repository" project.
-// For details, see https://github.com/egor-tensin/pdb-repo.
+// This file is part of the "winapi-debug" project.
+// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#include "command_line.hpp"
diff --git a/utils/pdb_descr.hpp b/utils/pdb_descr.hpp
index 6d8aeb2..967e69f 100644
--- a/utils/pdb_descr.hpp
+++ b/utils/pdb_descr.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "PDB repository" project.
-// For details, see https://github.com/egor-tensin/pdb-repo.
+// This file is part of the "winapi-debug" project.
+// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#pragma once