Author: aandrejevic Date: Sat Oct 26 20:53:33 2013 New Revision: 60757
URL: http://svn.reactos.org/svn/reactos?rev=60757&view=rev Log: [SOFTX86] Remove softx86, as it is no longer used by anything.
Removed: branches/ntvdm/lib/3rdparty/softx86/ Modified: branches/ntvdm/lib/3rdparty/CMakeLists.txt branches/ntvdm/subsystems/ntvdm/CMakeLists.txt
Modified: branches/ntvdm/lib/3rdparty/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/3rdparty/CMakeLists.tx... ============================================================================== --- branches/ntvdm/lib/3rdparty/CMakeLists.txt [iso-8859-1] (original) +++ branches/ntvdm/lib/3rdparty/CMakeLists.txt [iso-8859-1] Sat Oct 26 20:53:33 2013 @@ -8,7 +8,6 @@ add_subdirectory(libsamplerate) add_subdirectory(libwine) add_subdirectory(libxml2) -add_subdirectory(softx86) if(MSVC) add_subdirectory(stlport) endif()
Modified: branches/ntvdm/subsystems/ntvdm/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/CMakeList... ============================================================================== --- branches/ntvdm/subsystems/ntvdm/CMakeLists.txt [iso-8859-1] (original) +++ branches/ntvdm/subsystems/ntvdm/CMakeLists.txt [iso-8859-1] Sat Oct 26 20:53:33 2013 @@ -1,5 +1,4 @@
-include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/softx86) include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/fast486)
spec2def(ntvdm.exe ntvdm.spec) @@ -19,7 +18,7 @@
add_executable(ntvdm ${SOURCE}) set_module_type(ntvdm win32cui UNICODE) -target_link_libraries(ntvdm softx86 softx87 fast486) +target_link_libraries(ntvdm fast486) add_importlibs(ntvdm msvcrt user32 gdi32 kernel32 ntdll) -add_dependencies(ntvdm softx86 softx87) +add_dependencies(ntvdm fast486) add_cd_file(TARGET ntvdm DESTINATION reactos/system32 FOR all)