-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cmake build tool #15
Comments
I would be able help in providing the initial CMakeLists.txt files. |
I suggest to integrate it into your repository and then make a merge request. Would that work? |
Sure. I can fork your repository, develop there the CMakeLists.txt files and then create a merge request. What would be the minimum supported C++ standard? |
Sorry for the slow reply. C++11 would be more than sufficient for it. Likely even below, i.e. C++03 would likely go. The most important targets are, as you say, g++ und msvc. Thanks for looking into this. |
I have created pull request #50 as initial starting point. It was tested with:
The main library is called "jpeg", the cmd-line application is called "jpeg-tool" as names need to be unique in CMake. I didn't Note 1: Generating Ninja build files is the easiest way to analyze if all the compiler options are as intended. |
Migrating to CMake could help to build and install libjpeg on MSVC 15.x as simple as on gcc and you could remove any MSVS solution files (and autotools also)
The text was updated successfully, but these errors were encountered: