Fix/relax CMake linter rules (#35574)

Summary:
Ignore mixed upper-case/lower-case style for now
Fix space between function and its arguments violation
Pull Request resolved: https://github.com/pytorch/pytorch/pull/35574

Test Plan: CI

Differential Revision: D20712969

Pulled By: malfet

fbshipit-source-id: 0012d430aed916b4518599a0b535e82d15721f78
This commit is contained in:
Nikita Shulga
2020-03-27 16:49:27 -07:00
committed by Facebook GitHub Bot
parent 96eec95ece
commit b9adbb5002
25 changed files with 200 additions and 200 deletions

View File

@ -8,7 +8,7 @@ add_executable(test_cpp_rpc ${TORCH_RPC_TEST_SOURCES})
target_include_directories(test_cpp_rpc PRIVATE ${ATen_CPU_INCLUDE})
target_link_libraries(test_cpp_rpc PRIVATE torch gtest)
if (USE_CUDA)
if(USE_CUDA)
target_link_libraries(test_cpp_rpc PRIVATE
${CUDA_LIBRARIES}
${CUDA_NVRTC_LIB}
@ -18,10 +18,10 @@ if (USE_CUDA)
target_compile_definitions(test_cpp_rpc PRIVATE "USE_CUDA")
endif()
if (INSTALL_TEST)
if(INSTALL_TEST)
install(TARGETS test_cpp_rpc DESTINATION bin)
# Install PDB files for MSVC builds
if (MSVC AND BUILD_SHARED_LIBS)
if(MSVC AND BUILD_SHARED_LIBS)
install(FILES $<TARGET_PDB_FILE:test_cpp_rpc> DESTINATION bin OPTIONAL)
endif()
endif()