Git Product home page Git Product logo

Comments (6)

cheshirekow avatar cheshirekow commented on August 20, 2024 1

Added both examples to the tests and I believe this is fixed in 0.4.4. Thanks @siedentop for tracking it down in the source.

from cmake_format.

cheshirekow avatar cheshirekow commented on August 20, 2024

I think this is the same as #55. A comment should preclude formatting to a single line. Hopefully can fix them both quickly.

from cmake_format.

cheshirekow avatar cheshirekow commented on August 20, 2024

Ah, on second thought, I see this is a different issue: The paren can't be packed onto the same line because of the comment.

from cmake_format.

michaelmaguire avatar michaelmaguire commented on August 20, 2024

Thanks for this tool!

This ticket's issue still seems to be a problem for me in 0.4.3 (which from 'releases' ought to contain the fix already):

Input:

target_link_libraries(peerdiscovery PUBLIC
    ${COMMON_LIBRARIES}
    # add more library dependencies here
)

Output:

target_link_libraries(peerdiscovery
                      PUBLIC ${COMMON_LIBRARIES}
                             # add more library dependencies here)

which produced CMake errors:

[windows_build_and_unittest] CMake Error at peerdiscovery/CMakeLists.txt:52:
[windows_build_and_unittest]   Parse error.  Function missing ending ")".  End of file reached.

from cmake_format.

siedentop avatar siedentop commented on August 20, 2024

I still see this. Here is an example:

Input:

cmake_minimum_required(VERSION 3.13.0)
project(minimal_example)

find_package(foobar REQUIRED
             COMPONENTS some_component
                        # some_other_component # This is a very long comment, and actually the second comment in this row.
          )

Output:

cmake_minimum_required(VERSION 3.13.0)
project(minimal_example)

find_package(foobar REQUIRED
             COMPONENTS some_component
                        # some_other_component # This is a very long comment,
                        # and actually the second comment in this row.)

Notice the closing parens on the last comment line.

from cmake_format.

siedentop avatar siedentop commented on August 20, 2024

I can confirm that this is fixed now. Thank you, @cheshirekow !

from cmake_format.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.