Skip to content

Commit

Permalink
* Renamed refresh_file_explorer to file_explorer_renew.
Browse files Browse the repository at this point in the history
  • Loading branch information
end2endzone committed Jan 10, 2024
1 parent 5559aa1 commit 89ec0c7
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
/src/plugins/sa_plugin_strings/install
/src/plugins/sa_plugin_process/install
/src/plugins/sa_plugin_process/build
/scripts/refresh.tmp.bat
/scripts/refresh.tmp.bat
/installer
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ add_subdirectory(shellextension)
add_subdirectory(api)
add_subdirectory(logger/glog)
add_subdirectory(windows)
add_subdirectory(refresh_file_explorer)
add_subdirectory(file_explorer_renew)

if(SHELLANYTHING_BUILD_PLUGINS)
add_subdirectory(plugins/sa_plugin_process)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(REFRESH_FILE_EXP_RESOURCE_FILES ""
resource.rc
)

add_executable(refresh_file_explorer WIN32
add_executable(file_explorer_renew WIN32
${SHELLANYTHING_EXPORT_HEADER}
${SHELLANYTHING_VERSION_HEADER}
${SHELLANYTHING_CONFIG_HEADER}
Expand All @@ -25,28 +25,28 @@ add_executable(refresh_file_explorer WIN32
source_group("Resource Files" FILES ${REFRESH_FILE_EXP_RESOURCE_FILES})

# Force UNICODE for target
target_compile_definitions(refresh_file_explorer PRIVATE -D_UNICODE -DUNICODE)
target_compile_definitions(file_explorer_renew PRIVATE -D_UNICODE -DUNICODE)

# Force CMAKE_DEBUG_POSTFIX for executables
set_target_properties(refresh_file_explorer PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
set_target_properties(file_explorer_renew PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})

# Define include directories for the executable.
target_include_directories(refresh_file_explorer
target_include_directories(file_explorer_renew
PRIVATE
${GTEST_INCLUDE_DIR}
rapidassist
${CMAKE_SOURCE_DIR}/src/shared
)

# Define linking dependencies.
add_dependencies(refresh_file_explorer sa.shared)
target_link_libraries(refresh_file_explorer
add_dependencies(file_explorer_renew sa.shared)
target_link_libraries(file_explorer_renew
PRIVATE
sa.shared
rapidassist
)

install(TARGETS refresh_file_explorer
install(TARGETS file_explorer_renew
EXPORT shellanything-targets
ARCHIVE DESTINATION ${SHELLANYTHING_INSTALL_LIB_DIR}
LIBRARY DESTINATION ${SHELLANYTHING_INSTALL_LIB_DIR}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
static TCHAR szWindowClass[] = _T("DesktopApp");

// The string that appears in the application's title bar.
static TCHAR szTitle[] = _T("File Explorer cycle manager");
static TCHAR szTitle[] = _T("File Explorer renew");

// Stored instance handle for use in Win32 API calls such as FindResource
HINSTANCE hInst;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 89ec0c7

Please sign in to comment.