Changeset 111 in pacpusframework for branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt


Ignore:
Timestamp:
06/13/13 15:38:27 (11 years ago)
Author:
morasjul
Message:

Beta-2 : Add missing file inputOutputBase.cpp, et clean CMakeList

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0-beta1/src/DBITEPlayer/CMakeLists.txt

    r110 r111  
    88#################################################
    99project(DBITEPlayer)
    10 
    11 # ========================================
    12 # Configure qt4
    13 # ========================================
    14 #if(QT4_FOUND)
    15 #    set(QT_USE_QTXML true)
    16 #    include(${QT_USE_FILE})
    17 #else()
    18 #    message(ERROR "Qt4 needed")
    19 #endif(QT4_FOUND)
    2010
    2111# ========================================
     
    4030    ${PROJECT_BINARY_DIR}/../PacpusLib
    4131    ${PROJECT_BINARY_DIR}/../FileLib
     32    ${PROJECT_BINARY_DIR}/../DBITEPlayerLib
    4233)
    4334
     
    7667# Libraries & Dependencies
    7768# ========================================
     69# Windows platform
     70if(WIN32)
     71set(LIBS
     72        optimized ROAD_TIME debug ROAD_TIME_d
     73        Winmm
     74)
     75endif()
     76
    7877# All the platform
    7978target_link_libraries(
    8079    ${PROJECT_NAME}
    8180    ${QT_LIBRARIES}
    82     dbiteplayerlib
    83 #    FileLib
    84 #    PacpusLib
    85 #    PacpusTools
     81    ${LIBS}
     82    ${PACPUS_DEPENDENCIES_LIB}
     83    optimized dbiteplayerlib debug dbiteplayerlib_d
     84    optimized FileLib debug FileLib_d
     85    optimized PacpusLib debug PacpusLib_d
    8686)
    87 # Windows
    88 if(WIN32)
    89     target_link_libraries(
    90         ${PROJECT_NAME}
    91         ROAD_TIME
    92         Winmm
    93     )
    94 endif()
    9587
    9688# ========================================
Note: See TracChangeset for help on using the changeset viewer.