mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 14:45:12 +00:00
Move main source files into src/
This commit is contained in:
parent
390f26b28d
commit
166399f143
@ -73,17 +73,18 @@ add_executable(wibo
|
||||
dll/user32.cpp
|
||||
dll/vcruntime.cpp
|
||||
dll/version.cpp
|
||||
access.cpp
|
||||
errors.cpp
|
||||
files.cpp
|
||||
handles.cpp
|
||||
loader.cpp
|
||||
resources.cpp
|
||||
module_registry.cpp
|
||||
main.cpp
|
||||
processes.cpp
|
||||
strutil.cpp
|
||||
src/access.cpp
|
||||
src/errors.cpp
|
||||
src/files.cpp
|
||||
src/handles.cpp
|
||||
src/loader.cpp
|
||||
src/resources.cpp
|
||||
src/module_registry.cpp
|
||||
src/main.cpp
|
||||
src/processes.cpp
|
||||
src/strutil.cpp
|
||||
)
|
||||
target_include_directories(wibo PRIVATE dll src)
|
||||
target_link_libraries(wibo PRIVATE std::filesystem mimalloc-static)
|
||||
install(TARGETS wibo DESTINATION bin)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "wow64apiset.h"
|
||||
#include "common.h"
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
#include "errors.h"
|
||||
#include "handles.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "common.h"
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cerrno>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "common.h"
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
#include "errors.h"
|
||||
#include "files.h"
|
||||
#include "handles.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "common.h"
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
|
||||
#include <cstdio>
|
||||
#include <filesystem>
|
@ -1,6 +1,6 @@
|
||||
#include "processes.h"
|
||||
#include "common.h"
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
#include "files.h"
|
||||
#include "handles.h"
|
||||
#include <algorithm>
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "dll/kernel32/internal.h"
|
||||
#include "kernel32/internal.h"
|
||||
|
||||
#include <filesystem>
|
||||
#include <optional>
|
Loading…
x
Reference in New Issue
Block a user