Removed debug info from cmake files

This commit is contained in:
Seiji Emery 2015-06-23 17:18:18 -07:00
parent 1f0d9a250a
commit 0f97d95c2f
2 changed files with 0 additions and 10 deletions

View file

@ -1,6 +1,3 @@
message(STATUS "TEST_PROJ_NAME = " ${TEST_PROJ_NAME})
# Declare dependencies
macro (SETUP_TESTCASE_DEPENDENCIES)
# link in the shared libraries

View file

@ -1,10 +1,6 @@
# Declare dependencies
macro (SETUP_TESTCASE_DEPENDENCIES)
message(STATUS "setting up physics dependencies")
message(STATUS "TARGET_NAME = " ${TARGET_NAME})
add_dependency_external_projects(glm)
find_package(GLM REQUIRED)
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
@ -15,9 +11,6 @@ macro (SETUP_TESTCASE_DEPENDENCIES)
target_include_directories(${TARGET_NAME} SYSTEM PRIVATE ${BULLET_INCLUDE_DIRS})
target_link_libraries(${TARGET_NAME} ${BULLET_LIBRARIES})
message(STATUS "BULLET_INCLUDE_DIRS = " ${BULLET_INCLUDE_DIRS})
message(STATUS "TARGET_NAME = " ${TARGET_NAME})
link_hifi_libraries(shared physics)
copy_dlls_beside_windows_executable()
endmacro ()