CMake Multiple line comments - Block Comment

Viewed 79337

Is there any way to comment a block in CMake in notepad++ editor?

I have tried searching on Google, but couldn't find much.

Help is needed! Thanks,

4 Answers

Since CMake version 3.0 there are block comments.

Example from the CMake manual:

#[[This is a bracket comment.
It runs until the close bracket.]]
message("First Argument\n" #[[Bracket Comment]] "Second Argument")
Related