diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-15 23:05:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-15 23:05:10 +0300 |
commit | 84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf (patch) | |
tree | a3449960508c9da666c792a49f1f98dbe351d589 /utils | |
parent | switch from Boost.Nowide to winapi-utf8 (diff) | |
download | winapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.tar.gz winapi-debug-84ea7c37b2b9e1eb71ef812fffc569bb98ec82cf.zip |
rename the project
Diffstat (limited to '')
-rw-r--r-- | utils/CMakeLists.txt | 2 | ||||
-rw-r--r-- | utils/addr2name.cpp | 4 | ||||
-rw-r--r-- | utils/command_line.hpp | 4 | ||||
-rw-r--r-- | utils/enum_symbols.cpp | 4 | ||||
-rw-r--r-- | utils/name2addr.cpp | 4 | ||||
-rw-r--r-- | utils/pdb_descr.hpp | 4 |
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 |