aboutsummaryrefslogtreecommitdiffstatshomepage
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
parentswitch from Boost.Nowide to winapi-utf8 (diff)
downloadwinapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.tar.gz
winapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.zip
rename the project
Diffstat (limited to '')
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--CMakeLists.txt22
-rw-r--r--README.md6
-rw-r--r--include/pdb/address.hpp4
-rw-r--r--include/pdb/all.hpp4
-rw-r--r--include/pdb/call_stack.hpp4
-rw-r--r--include/pdb/dbghelp.hpp4
-rw-r--r--include/pdb/error.hpp4
-rw-r--r--include/pdb/handle.hpp4
-rw-r--r--include/pdb/module.hpp4
-rw-r--r--include/pdb/process.hpp4
-rw-r--r--include/pdb/repo.hpp4
-rw-r--r--include/pdb/symbol.hpp4
-rw-r--r--include/pdb/utils/file.hpp4
-rw-r--r--include/pdb/workarounds.hpp4
-rw-r--r--src/call_stack.cpp4
-rw-r--r--src/dbghelp.cpp4
-rw-r--r--src/error.cpp4
-rw-r--r--src/module.cpp4
-rw-r--r--src/process.cpp4
-rw-r--r--src/repo.cpp4
-rw-r--r--src/symbol.cpp4
-rw-r--r--src/utils/file.cpp4
-rw-r--r--test/CMakeLists.txt2
-rw-r--r--test/call_stack.cpp4
-rw-r--r--test/test_lib.cpp4
-rw-r--r--test/test_lib.hpp4
-rw-r--r--test/test_lib_api.hpp4
-rw-r--r--test/unit_tests/CMakeLists.txt2
-rw-r--r--test/unit_tests/call_stack.cpp4
-rw-r--r--test/unit_tests/dbghelp.cpp4
-rw-r--r--test/unit_tests/error.cpp4
-rw-r--r--test/unit_tests/fixtures.hpp4
-rw-r--r--test/unit_tests/main.cpp6
-rw-r--r--test/unit_tests/paths.hpp4
-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
41 files changed, 89 insertions, 89 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0344053..898e25c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -68,7 +68,7 @@ jobs:
- name: Upload binaries
uses: actions/upload-artifact@v2
with:
- name: 'pdb-repo-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
+ name: 'winapi-debug-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
path: '${{ runner.workspace }}/build/install/'
if-no-files-found: error
- name: Test
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4fcad15..20e528a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets
-project(pdb_repo CXX)
+project(winapi_debug CXX)
enable_testing()
if(MSVC)
@@ -29,28 +29,28 @@ include(cmake/common.cmake)
find_package(Boost REQUIRED)
add_subdirectory(3rdparty/winapi/utf8)
-file(GLOB_RECURSE pdb_repo_include "include/*.hpp")
-file(GLOB_RECURSE pdb_repo_src "src/*.cpp")
-add_library(pdb_repo ${pdb_repo_include} ${pdb_repo_src})
-target_compile_definitions(pdb_repo PUBLIC _NO_CVCONST_H)
-target_include_directories(pdb_repo PUBLIC include/)
-target_link_libraries(pdb_repo PRIVATE winapi_utf8)
-target_link_libraries(pdb_repo
+file(GLOB_RECURSE winapi_debug_include "include/*.hpp")
+file(GLOB_RECURSE winapi_debug_src "src/*.cpp")
+add_library(winapi_debug ${winapi_debug_include} ${winapi_debug_src})
+target_compile_definitions(winapi_debug PUBLIC _NO_CVCONST_H)
+target_include_directories(winapi_debug PUBLIC include/)
+target_link_libraries(winapi_debug PRIVATE winapi_utf8)
+target_link_libraries(winapi_debug
PUBLIC Boost::boost
PRIVATE Boost::disable_autolinking)
-target_link_libraries(pdb_repo PRIVATE dbghelp)
+target_link_libraries(winapi_debug PRIVATE dbghelp)
if(MINGW)
# FILE_ID_INFO and friends require at least 0x0602:
message("MINGW")
- target_compile_definitions(pdb_repo PUBLIC
+ target_compile_definitions(winapi_debug PUBLIC
NTDDI_VERSION=NTDDI_WIN8
_WIN32_WINNT=_WIN32_WINNT_WIN8)
endif()
if(MSVC_VERSION EQUAL 1900)
# DbgHelp warnings on Visual Studio 2015:
- target_compile_options(pdb_repo PUBLIC /wd4091)
+ target_compile_options(winapi_debug PUBLIC /wd4091)
endif()
add_subdirectory(test)
diff --git a/README.md b/README.md
index be886fa..0c562cd 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-PDB repository
-==============
+winapi-debug
+============
-[![CI](https://github.com/egor-tensin/pdb-repo/actions/workflows/ci.yml/badge.svg)](https://github.com/egor-tensin/pdb-repo/actions/workflows/ci.yml)
+[![CI](https://github.com/egor-tensin/winapi-debug/actions/workflows/ci.yml/badge.svg)](https://github.com/egor-tensin/winapi-debug/actions/workflows/ci.yml)
Want to conduct a post-mortem analysis, but all you've got is a bunch of PDB
files and a call stack?
diff --git a/include/pdb/address.hpp b/include/pdb/address.hpp
index f7a7239..3d7acd6 100644
--- a/include/pdb/address.hpp
+++ b/include/pdb/address.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/include/pdb/all.hpp b/include/pdb/all.hpp
index 0794362..c09af31 100644
--- a/include/pdb/all.hpp
+++ b/include/pdb/all.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/include/pdb/call_stack.hpp b/include/pdb/call_stack.hpp
index e86569a..30f642c 100644
--- a/include/pdb/call_stack.hpp
+++ b/include/pdb/call_stack.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/include/pdb/dbghelp.hpp b/include/pdb/dbghelp.hpp
index 0026bfb..6965823 100644
--- a/include/pdb/dbghelp.hpp
+++ b/include/pdb/dbghelp.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/include/pdb/error.hpp b/include/pdb/error.hpp
index c927719..5ea885f 100644
--- a/include/pdb/error.hpp
+++ b/include/pdb/error.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/include/pdb/handle.hpp b/include/pdb/handle.hpp
index 2cc5d32..319a581 100644
--- a/include/pdb/handle.hpp
+++ b/include/pdb/handle.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/include/pdb/module.hpp b/include/pdb/module.hpp
index 81312b9..5cfa69d 100644
--- a/include/pdb/module.hpp
+++ b/include/pdb/module.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/include/pdb/process.hpp b/include/pdb/process.hpp
index 023a741..7639536 100644
--- a/include/pdb/process.hpp
+++ b/include/pdb/process.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/include/pdb/repo.hpp b/include/pdb/repo.hpp
index 74a86a8..571a164 100644
--- a/include/pdb/repo.hpp
+++ b/include/pdb/repo.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/include/pdb/symbol.hpp b/include/pdb/symbol.hpp
index f843df7..47e4fb1 100644
--- a/include/pdb/symbol.hpp
+++ b/include/pdb/symbol.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/include/pdb/utils/file.hpp b/include/pdb/utils/file.hpp
index 2f2db9a..44d3d5f 100644
--- a/include/pdb/utils/file.hpp
+++ b/include/pdb/utils/file.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/include/pdb/workarounds.hpp b/include/pdb/workarounds.hpp
index 00bd5c5..4087990 100644
--- a/include/pdb/workarounds.hpp
+++ b/include/pdb/workarounds.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/src/call_stack.cpp b/src/call_stack.cpp
index 183f14a..d47a8ca 100644
--- a/src/call_stack.cpp
+++ b/src/call_stack.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 <pdb/all.hpp>
diff --git a/src/dbghelp.cpp b/src/dbghelp.cpp
index 254ad15..06c1008 100644
--- a/src/dbghelp.cpp
+++ b/src/dbghelp.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 <pdb/all.hpp>
diff --git a/src/error.cpp b/src/error.cpp
index 00252e9..8e370e8 100644
--- a/src/error.cpp
+++ b/src/error.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 <pdb/all.hpp>
diff --git a/src/module.cpp b/src/module.cpp
index e43f942..672cceb 100644
--- a/src/module.cpp
+++ b/src/module.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 <pdb/all.hpp>
diff --git a/src/process.cpp b/src/process.cpp
index 022a1b3..b70bf89 100644
--- a/src/process.cpp
+++ b/src/process.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 <pdb/all.hpp>
diff --git a/src/repo.cpp b/src/repo.cpp
index fbdf1ae..af56373 100644
--- a/src/repo.cpp
+++ b/src/repo.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 <pdb/all.hpp>
diff --git a/src/symbol.cpp b/src/symbol.cpp
index eff9a03..4de9a7d 100644
--- a/src/symbol.cpp
+++ b/src/symbol.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 <pdb/all.hpp>
diff --git a/src/utils/file.cpp b/src/utils/file.cpp
index 9584de3..af1de6e 100644
--- a/src/utils/file.cpp
+++ b/src/utils/file.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 <pdb/all.hpp>
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 86f7d1a..17770c9 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,5 +1,5 @@
add_library(test_lib SHARED test_lib.cpp)
-target_link_libraries(test_lib PRIVATE pdb_repo)
+target_link_libraries(test_lib PRIVATE winapi_debug)
target_include_directories(test_lib PUBLIC .)
target_compile_definitions(test_lib PRIVATE TEST_LIB_EXPORTS)
install(TARGETS test_lib RUNTIME DESTINATION bin/test)
diff --git a/test/call_stack.cpp b/test/call_stack.cpp
index fb5f7b8..a2f86d4 100644
--- a/test/call_stack.cpp
+++ b/test/call_stack.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 <test_lib.hpp>
diff --git a/test/test_lib.cpp b/test/test_lib.cpp
index 0c4bd27..cb3d1d7 100644
--- a/test/test_lib.cpp
+++ b/test/test_lib.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 "test_lib.hpp"
diff --git a/test/test_lib.hpp b/test/test_lib.hpp
index ced9100..2506d93 100644
--- a/test/test_lib.hpp
+++ b/test/test_lib.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/test/test_lib_api.hpp b/test/test_lib_api.hpp
index 8778df1..27c01a6 100644
--- a/test/test_lib_api.hpp
+++ b/test/test_lib_api.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt
index 309333d..f566c0b 100644
--- a/test/unit_tests/CMakeLists.txt
+++ b/test/unit_tests/CMakeLists.txt
@@ -1,7 +1,7 @@
find_package(Boost REQUIRED COMPONENTS filesystem unit_test_framework)
add_executable(unit_tests main.cpp call_stack.cpp dbghelp.cpp error.cpp)
-target_link_libraries(unit_tests PRIVATE pdb_repo test_lib)
+target_link_libraries(unit_tests PRIVATE test_lib winapi_debug)
target_link_libraries(unit_tests PRIVATE
Boost::disable_autolinking
Boost::filesystem
diff --git a/test/unit_tests/call_stack.cpp b/test/unit_tests/call_stack.cpp
index 4adef63..d4c9c0e 100644
--- a/test/unit_tests/call_stack.cpp
+++ b/test/unit_tests/call_stack.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 "fixtures.hpp"
diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp
index b4ba1ce..2393b77 100644
--- a/test/unit_tests/dbghelp.cpp
+++ b/test/unit_tests/dbghelp.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 "fixtures.hpp"
diff --git a/test/unit_tests/error.cpp b/test/unit_tests/error.cpp
index a1ae977..9faf1e0 100644
--- a/test/unit_tests/error.cpp
+++ b/test/unit_tests/error.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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 <pdb/all.hpp>
diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp
index 60047df..78e7a8b 100644
--- a/test/unit_tests/fixtures.hpp
+++ b/test/unit_tests/fixtures.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/test/unit_tests/main.cpp b/test/unit_tests/main.cpp
index cacb02f..522270f 100644
--- a/test/unit_tests/main.cpp
+++ b/test/unit_tests/main.cpp
@@ -1,7 +1,7 @@
// Copyright (c) 2020 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.
-#define BOOST_TEST_MODULE pdb_repo tests
+#define BOOST_TEST_MODULE winapi_debug tests
#include <boost/test/unit_test.hpp>
diff --git a/test/unit_tests/paths.hpp b/test/unit_tests/paths.hpp
index afc15ec..7750eb5 100644
--- a/test/unit_tests/paths.hpp
+++ b/test/unit_tests/paths.hpp
@@ -1,6 +1,6 @@
// Copyright (c) 2020 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/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