MaciejPatro / cmake-tidy

Project provides a set of tools that will ease the development process for code written in CMake.
MIT License
16 stars 0 forks source link

line comments within command invocation #87

Closed MaciejPatro closed 4 years ago

MaciejPatro commented 4 years ago

        set(NEEDED_BOOST_LIBS
            atomic
            chrono
            thread

            # A comment is here
            # whish is removed
            # afterwards
            log
            log_setup
        )

ends as:

        set(NEEDED_BOOST_LIBS
            atomic
            chrono
            thread  # afterwards
            log
            log_setup
        )