Skip to content

Commit

Permalink
changed file names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper1467 committed Dec 17, 2024
1 parent a9fb8d3 commit 0f71d53
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ if (${ARCH} EQUAL 32)
)
set(HEADERS
include/mhde32.hpp
include/table32.hpp
include/wrapper.hpp
include/mhde_table32.hpp
include/mhde_wrapper.hpp
)
elseif (${ARCH} EQUAL 64)
set(SOURCES
src/mhde64.cpp
)
set(HEADERS
include/mhde64.hpp
include/table64.hpp
include/wrapper.hpp
include/mhde_table64.hpp
include/mhde_wrapper.hpp
)
else()
message(FATAL_ERROR "Unsupported architecture")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/mhde32.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if defined(_M_IX86) || defined(__i386__)

#include "../include/mhde32.hpp"
#include "../include/table32.hpp"
#include "../include/mhde_table32.hpp"

#include <cstring>

Expand Down
2 changes: 1 addition & 1 deletion src/mhde64.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if defined(_M_X64) || defined(__x86_64__)

#include "../include/mhde64.hpp"
#include "../include/table64.hpp"
#include "../include/mhde_table64.hpp"

#include <cstdint>
#include <cstring>
Expand Down
2 changes: 1 addition & 1 deletion tests/tests.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../include/wrapper.hpp"
#include "../include/mhde_wrapper.hpp"

#include <iostream>
#include <stdexcept>
Expand Down

0 comments on commit 0f71d53

Please sign in to comment.