Changeset 500894facc0beab754ebc84b3129a6befc8d7394

Show
Ignore:
Timestamp:
03/31/08 17:41:35 (3 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1206978095 +0200
git-parent:

[f51de26430e854fd5f28abdf982e85e319a3a22c]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1206977993 +0200
Message:

cmake: Support for libs/loader.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/buildsystem/cmake/CMakeLists/root_CMakeLists.txt

    r007245a r500894f  
    3030 
    3131# our sources: 
     32add_subdirectory(libs/loader) 
    3233add_subdirectory(src) 
    3334add_subdirectory(modules) 
  • extras/buildsystem/cmake/include/config.cmake

    rd4fc232 r500894f  
    2121OPTION( ENABLE_NO_SYMBOL_CHECK "Don't check symbols of modules against libvlc. (Enabling this option speeds up compilation)" OFF ) 
    2222OPTION( ENABLE_CONTRIB         "Attempt to use VLC contrib system to get the third-party libraries" ON ) 
     23OPTION( ENABLE_LOADER          "Enable the win32 codec loader" ON ) 
    2324 
    2425if(ENABLE_CONTRIB) 
  • extras/buildsystem/cmake/scripts/convert_vlc_to_cmake.sh

    rd361551 r500894f  
    2121echo "Removing old modules/gui/qt4/CMakeLists.txt" 
    2222rm -f modules/gui/qt4/CMakeLists.txt 
     23 
     24echo "Installing libs/loaders/CMakeLists.txt" 
     25rm -f libs/loaders/CMakeLists.txt 
     26ln -s ../$cmake_dir/CMakeLists/libs_loaders_CMakeLists.txt libs/loaders/CMakeLists.txt 
    2327 
    2428echo "Installing modules/CMakeLists.txt"