mirror of
https://github.com/glest/glest-source.git
synced 2025-08-30 19:29:47 +02:00
linux's installer based on binary and data files (no parallel configuration anymore)
This commit is contained in:
@@ -45,9 +45,9 @@ PATHS
|
||||
find_path(LIBVLC_INCLUDE_DIR PATHS "${CMAKE_INCLUDE_PATH}/vlc" NAMES vlc.h
|
||||
HINTS ${PC_LIBVLC_INCLUDEDIR} ${PC_LIBVLC_INCLUDE_DIRS})
|
||||
|
||||
if (NOT LIBVLC_FIND_QUIETLY)
|
||||
if (WANT_USE_VLC AND NOT LIBVLC_FIND_QUIETLY)
|
||||
message(STATUS "Found LibVLC include-dir path: [${LIBVLC_INCLUDE_DIR}]")
|
||||
endif (NOT LIBVLC_FIND_QUIETLY)
|
||||
endif ()
|
||||
|
||||
# dream on libvlc doesn't support static linking
|
||||
set(LIBVLC_LIB_NAMES vlc libvlc)
|
||||
@@ -70,9 +70,9 @@ PATHS
|
||||
)
|
||||
find_library(LIBVLC_LIBRARY NAMES ${LIBVLC_LIB_NAMES})
|
||||
|
||||
if (NOT LIBVLC_FIND_QUIETLY)
|
||||
if (WANT_USE_VLC AND NOT LIBVLC_FIND_QUIETLY)
|
||||
message(STATUS "Found LibVLC library path: [${LIBVLC_LIBRARY}]")
|
||||
endif (NOT LIBVLC_FIND_QUIETLY)
|
||||
endif ()
|
||||
|
||||
find_library(LIBVLCCORE_LIBRARY NAMES ${LIBVLC_LIB_CORE_NAMES}
|
||||
HINTS "$ENV{LIBVLC_LIBRARY_PATH}" ${PC_LIBVLC_LIBDIR} ${PC_LIBVLC_LIBRARY_DIRS}
|
||||
@@ -83,9 +83,9 @@ PATHS
|
||||
)
|
||||
find_library(LIBVLCCORE_LIBRARY NAMES ${LIBVLC_LIB_CORE_NAMES})
|
||||
|
||||
if (NOT LIBVLC_FIND_QUIETLY)
|
||||
if (WANT_USE_VLC AND NOT LIBVLC_FIND_QUIETLY)
|
||||
message(STATUS "Found LibVLCcore library path: [${LIBVLCCORE_LIBRARY}]")
|
||||
endif (NOT LIBVLC_FIND_QUIETLY)
|
||||
endif ()
|
||||
|
||||
set(LIBVLC_VERSION ${PC_LIBVLC_VERSION})
|
||||
if (NOT LIBVLC_VERSION)
|
||||
|
Reference in New Issue
Block a user