Skip to content

Commit

Permalink
various - minor coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Winter committed Dec 16, 2019
1 parent 63cdd86 commit e249844
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from conans import ConanFile, CMake, tools


class KDStateMachineEditorConan(ConanFile):
name = "KDStateMachineEditor"
version = "1.2"
Expand Down
2 changes: 1 addition & 1 deletion src/debuginterface/debuginterfaceclient/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ecm_generate_pri_file(BASE_NAME KDSMEDebugInterfaceClient
install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR})
install(TARGETS kdstatemachineeditor_debuginterfaceclient EXPORT KDSME_TARGETS ${INSTALL_TARGETS_DEFAULT_ARGS})
if(MSVC)
install(FILES "$<TARGET_PDB_FILE_DIR:kdstatemachineeditor_debuginterfaceclient>/$<TARGET_PDB_FILE_NAME:kdstatemachineeditor_debuginterfaceclient>" DESTINATION ${BIN_INSTALL_DIR} CONFIGURATIONS Debug RelWithDebInfo)
install(FILES "$<TARGET_PDB_FILE_DIR:kdstatemachineeditor_debuginterfaceclient>/$<TARGET_PDB_FILE_NAME:kdstatemachineeditor_debuginterfaceclient>" DESTINATION ${BIN_INSTALL_DIR} CONFIGURATIONS Debug RelWithDebInfo)
endif()
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/kdsme_debuginterfaceclient_export.h
Expand Down
4 changes: 2 additions & 2 deletions src/debuginterface/debuginterfacesource/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(QSMDEBUGINTERFACESOURCE_SRCS
../../core/util/objecthelper.cpp
)

if (Qt5Scxml_FOUND)
if(Qt5Scxml_FOUND)
list(APPEND QSMDEBUGINTERFACESOURCE_SRCS qscxmldebuginterfacesource.cpp)
endif()

Expand All @@ -20,7 +20,7 @@ target_link_libraries(kdstatemachineeditor_debuginterfacesource
LINK_PUBLIC
Qt5::Core
)
if (Qt5Scxml_FOUND)
if(Qt5Scxml_FOUND)
target_include_directories(kdstatemachineeditor_debuginterfacesource PRIVATE ${Qt5Scxml_PRIVATE_INCLUDE_DIRS})
target_link_libraries(kdstatemachineeditor_debuginterfacesource
LINK_PUBLIC
Expand Down

0 comments on commit e249844

Please sign in to comment.