mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
52bc5f7c5d
- Add Internet icon on Desktop. You can hide/show the icon from Desktop's customization. - Modify "HKCR\CLSID\%CLSID_Internet%" registry key. - Add IDS_INTERNET and IDS_INTERNET_DESCRITION into ieframe.dll. - Modify folders/CDesktopFolder.cpp and folders/CRegFolder.cpp to add the icon. CORE-18625 Co-authored-by: Stanislav Motylkov <x86corez@gmail.com> Co-authored-by: Joachim Henze <joachim.henze@reactos.org>
10 lines
406 B
CMake
10 lines
406 B
CMake
|
|
add_rc_deps(iexplore.rc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/iexplore.ico
|
|
${CMAKE_CURRENT_SOURCE_DIR}/iexplore.inf)
|
|
add_executable(iexplore main.c iexplore.rc)
|
|
target_link_libraries(iexplore wine)
|
|
set_module_type(iexplore win32gui UNICODE)
|
|
add_delay_importlibs(iexplore advpack version user32)
|
|
add_importlibs(iexplore ieframe msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET iexplore DESTINATION reactos FOR all)
|