Skip to content

Commit

Permalink
fix indent in cmake scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Jul 10, 2018
1 parent f433231 commit f892dca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions backend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(NOT BUILD_DEPENDENCIES)
find_package(noson QUIET)
endif()
if(NOT noson_FOUND)
add_subdirectory (${CMAKE_CURRENT_SOURCE_DIR}/lib)
add_subdirectory (${CMAKE_CURRENT_SOURCE_DIR}/lib)
endif()

###############################################################################
Expand Down Expand Up @@ -79,7 +79,7 @@ endif()
target_link_libraries(NosonAppbackend ${noson_LIBRARIES})

set_target_properties(NosonAppbackend PROPERTIES
LIBRARY_OUTPUT_DIRECTORY NosonApp)
LIBRARY_OUTPUT_DIRECTORY NosonApp)

target_link_libraries(NosonAppbackend Qt5::Gui Qt5::Qml Qt5::Quick)

Expand Down
4 changes: 2 additions & 2 deletions backend/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(SKIP_INSTALL_ALL ON)

# Provides dependency zlib
if(NOT BUILD_DEPENDENCIES)
find_package(ZLIB QUIET)
find_package(ZLIB QUIET)
endif()
if(NOT ZLIB_FOUND)
add_subdirectory(
Expand All @@ -27,7 +27,7 @@ endif()

# Provides dependency openssl
if(NOT BUILD_DEPENDENCIES)
find_package(OpenSSL QUIET)
find_package(OpenSSL QUIET)
endif()
if(NOT OPENSSL_FOUND)
add_subdirectory(
Expand Down
6 changes: 3 additions & 3 deletions cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ if(NOT noson_FOUND)
endif()

if(MSVC)
target_link_libraries (noson-cli ${noson_LIBRARIES} ws2_32)
target_link_libraries (noson-cli ${noson_LIBRARIES} ws2_32)
else()
target_link_libraries (noson-cli ${noson_LIBRARIES})
target_link_libraries (noson-cli ${noson_LIBRARIES})
endif()

install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/noson-cli
DESTINATION ${PLUGINS_DIR})
DESTINATION ${PLUGINS_DIR})

0 comments on commit f892dca

Please sign in to comment.