diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e045ae..9d0c4fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,6 +76,13 @@ set(nexthooker_src gui/window.h gui/TextBuffer.cpp gui/TextBuffer.h + gui/profile/Profile.h + gui/profile/Profile.cpp + gui/profile/pugiconfig.h + gui/profile/pugixml.cpp + gui/profile/pugixml.h + gui/profile/misc.h + gui/profile/misc.cpp ${resource_src} ) @@ -83,7 +90,7 @@ source_group("Resource Files" FILES ${resource_src}) add_executable(${PROJECT_NAME} ${nexthooker_src}) -add_subdirectory(vnr) + add_subdirectory(vnr) # add_subdirectory(profile) set_target_properties(${PROJECT_NAME} PROPERTIES @@ -97,7 +104,7 @@ target_compile_definitions(${PROJECT_NAME} ) target_link_libraries(${PROJECT_NAME} - profile + #profile vnrhost #ithsys #${WDK_HOME}/lib/wxp/i386/ntdll.lib diff --git a/vnr/profile/Profile.cpp b/gui/profile/Profile.cpp similarity index 100% rename from vnr/profile/Profile.cpp rename to gui/profile/Profile.cpp diff --git a/vnr/profile/Profile.h b/gui/profile/Profile.h similarity index 100% rename from vnr/profile/Profile.h rename to gui/profile/Profile.h diff --git a/vnr/profile/misc.cpp b/gui/profile/misc.cpp similarity index 100% rename from vnr/profile/misc.cpp rename to gui/profile/misc.cpp diff --git a/vnr/profile/misc.h b/gui/profile/misc.h similarity index 100% rename from vnr/profile/misc.h rename to gui/profile/misc.h diff --git a/vnr/profile/pugiconfig.h b/gui/profile/pugiconfig.h similarity index 100% rename from vnr/profile/pugiconfig.h rename to gui/profile/pugiconfig.h diff --git a/vnr/profile/pugixml.cpp b/gui/profile/pugixml.cpp similarity index 100% rename from vnr/profile/pugixml.cpp rename to gui/profile/pugixml.cpp diff --git a/vnr/profile/pugixml.h b/gui/profile/pugixml.h similarity index 100% rename from vnr/profile/pugixml.h rename to gui/profile/pugixml.h diff --git a/vnr/CMakeLists.txt b/vnr/CMakeLists.txt index 891acb0..016681f 100644 --- a/vnr/CMakeLists.txt +++ b/vnr/CMakeLists.txt @@ -25,4 +25,3 @@ include_directories( add_subdirectory(vnrhook) add_subdirectory(texthook) -add_subdirectory(profile) diff --git a/vnr/profile/CMakeLists.txt b/vnr/profile/CMakeLists.txt deleted file mode 100644 index a69f2b1..0000000 --- a/vnr/profile/CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ -set(profile_src - Profile.h - Profile.cpp - pugiconfig.h - pugixml.cpp - pugixml.h - misc.h - misc.cpp -) - -add_library(profile STATIC ${profile_src}) - -target_compile_options(profile PRIVATE - $<$:> - $<$:> -) - -#target_link_libraries(profile comctl32.lib) - -#target_compile_definitions(profile -# PRIVATE -# _CRT_NON_CONFORMING_SWPRINTFS -#)