mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 12:28:31 +01:00
fix build and move gtest to 3rdparty
This commit is contained in:
parent
e7c064809c
commit
7e500a2fa8
@ -154,6 +154,7 @@ add_library(clementine_lib
|
|||||||
${CLEMENTINE-SOURCES}
|
${CLEMENTINE-SOURCES}
|
||||||
${CLEMENTINE-SOURCES-MOC}
|
${CLEMENTINE-SOURCES-MOC}
|
||||||
${CLEMENTINE-SOURCES-UI}
|
${CLEMENTINE-SOURCES-UI}
|
||||||
|
${CLEMENTINE-SOURCES-RESOURCE}
|
||||||
)
|
)
|
||||||
target_link_libraries(clementine_lib
|
target_link_libraries(clementine_lib
|
||||||
${QT_LIBRARIES}
|
${QT_LIBRARIES}
|
||||||
@ -162,7 +163,6 @@ target_link_libraries(clementine_lib
|
|||||||
${XINE_LIBRARIES}
|
${XINE_LIBRARIES}
|
||||||
${LIBNOTIFY_LIBRARIES}
|
${LIBNOTIFY_LIBRARIES}
|
||||||
${TAGLIB_LIBRARIES}
|
${TAGLIB_LIBRARIES}
|
||||||
${CLEMENTINE-SOURCES-RESOURCE}
|
|
||||||
lastfm
|
lastfm
|
||||||
)
|
)
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
@ -191,4 +191,5 @@ set_target_properties(clementine PROPERTIES
|
|||||||
)
|
)
|
||||||
|
|
||||||
install(TARGETS clementine
|
install(TARGETS clementine
|
||||||
BUNDLE DESTINATION bin)
|
BUNDLE DESTINATION bin
|
||||||
|
RUNTIME DESTINATION bin)
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
cmake_minimum_required(VERSION 2.6)
|
cmake_minimum_required(VERSION 2.6)
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../gtest)
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty/gtest)
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../gtest/include)
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty/gtest/include)
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../src)
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../src)
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../src)
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../src)
|
||||||
|
|
||||||
set(GTEST-SOURCES
|
set(GTEST-SOURCES
|
||||||
../gtest/src/gtest.cc
|
../3rdparty/gtest/src/gtest.cc
|
||||||
../gtest/src/gtest-death-test.cc
|
../3rdparty/gtest/src/gtest-death-test.cc
|
||||||
../gtest/src/gtest-filepath.cc
|
../3rdparty/gtest/src/gtest-filepath.cc
|
||||||
../gtest/src/gtest-port.cc
|
../3rdparty/gtest/src/gtest-port.cc
|
||||||
../gtest/src/gtest-test-part.cc
|
../3rdparty/gtest/src/gtest-test-part.cc
|
||||||
../gtest/src/gtest-typed-test.cc
|
../3rdparty/gtest/src/gtest-typed-test.cc
|
||||||
)
|
)
|
||||||
|
|
||||||
add_library(gtest ${GTEST-SOURCES})
|
add_library(gtest ${GTEST-SOURCES})
|
||||||
|
|
||||||
|
|
||||||
set(SONGTEST-SOURCES
|
set(SONGTEST-SOURCES
|
||||||
../gtest/src/gtest_main.cc
|
../3rdparty/gtest/src/gtest_main.cc
|
||||||
../src/song.cpp
|
../src/song.cpp
|
||||||
song_test.cpp)
|
song_test.cpp)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user