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

find_package #93

Closed MaciejPatro closed 4 years ago

MaciejPatro commented 4 years ago
find_package(Library REQUIRED
    COMPONENTS
        Abc
        Cde

goes into

find_package(Library 
    REQUIRED
        COMPONENTS
        Abc
        Cde

instead

find_package(Library 
    REQUIRED
    COMPONENTS
        Abc
        Cde