Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2015-01-08 19:17:40 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-01-08 19:17:40 +0300
commite02af840e1fbafd068d527ade70146141ab16946 (patch)
tree0a79ad0061e80b6f4b9a6bcd320adf28f81fcb75 /build_files/cmake/Modules/GTestTesting.cmake
parent60e70c0c6014e51954473e075a7679ad24648acd (diff)
Fix gtest linking on ubuntu and do minor cleanup.
Generally for build systems, libraries that do not depend on other libraries, such as system libraries, OpenGL etc always go at the end. We could even get rid of some duplicate dependency libraries here but auto duplication by build systems and differences between OSs make this difficult. GTest still duplicates all libraries twice to solve some issues which is weird (maybe libs are not sorted correctly for some reason? needs investigation)
Diffstat (limited to 'build_files/cmake/Modules/GTestTesting.cmake')
-rw-r--r--build_files/cmake/Modules/GTestTesting.cmake1
1 files changed, 0 insertions, 1 deletions
diff --git a/build_files/cmake/Modules/GTestTesting.cmake b/build_files/cmake/Modules/GTestTesting.cmake
index c8719de64ad..fd0379b8f78 100644
--- a/build_files/cmake/Modules/GTestTesting.cmake
+++ b/build_files/cmake/Modules/GTestTesting.cmake
@@ -28,7 +28,6 @@ macro(BLENDER_SRC_GTEST NAME SRC EXTRA_LIBS)
add_executable(${NAME}_test ${SRC})
target_link_libraries(${NAME}_test
- ${PLATFORM_LINKLIBS}
${EXTRA_LIBS}
bf_testing_main
bf_intern_guardedalloc