Skip to content

Commit

Permalink
Temporarily disable "editors" directory on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
willend committed Jul 11, 2024
1 parent f6d5b26 commit c35deab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion mcstas-comps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ endif()
install( DIRECTORY "share/" DESTINATION "${DEST_DATADIR_CODEFILES}")

# Editor syntax-highlighting etc
install( DIRECTORY "editors/" DESTINATION "${DEST_DATADIR_EDITORS}" )
if (NOT WINDOWS)
install( DIRECTORY "editors/" DESTINATION "${DEST_DATADIR_EDITORS}" )
endif()

# System comps
install( DIRECTORY "misc/" DESTINATION "${DEST_DATADIR_COMPS}/misc")
Expand Down
4 changes: 3 additions & 1 deletion mcxtrace-comps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ endif()
install( DIRECTORY "share/" DESTINATION "${DEST_DATADIR_CODEFILES}")

# Editor syntax-highlighting etc
install( DIRECTORY "editors/" DESTINATION "${DEST_DATADIR_EDITORS}" )
if (NOT WINDOWS)
install( DIRECTORY "editors/" DESTINATION "${DEST_DATADIR_EDITORS}" )
endif()

# System comps
install( DIRECTORY "misc/" DESTINATION "${DEST_DATADIR_COMPS}/misc")
Expand Down

0 comments on commit c35deab

Please sign in to comment.