-
Notifications
You must be signed in to change notification settings - Fork 539
Added Visual Studio compilation guide #1027
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
Conversation
docs/img/COMPILATION.MD
Outdated
| @@ -0,0 +1,243 @@ | |||
| # Compiling CCExtractor | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this in docs/img?
docs/COMPILATION.MD
Outdated
|
|
||
| #### Here you can see two files .vcxproj(marked with blue arrows) and one .sln project(marked with a red arrow) | ||
|
|
||
|  |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of alt text can you do a description of the image?
|
Good remarks by Matej, can you fix those? |
| Open the windows/ccextractor.sln file with Visual Studio (2015 at least), and build it. | ||
| **Using Visual Studio** | ||
|
|
||
| #### Here you can see two files .vcxproj(marked with blue arrows) and one .sln project(marked with a red arrow) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These steps should be in normal text, not subheadings.
| Open the windows/ccextractor.sln file with Visual Studio (2015 at least), and build it. | ||
| **Using Visual Studio** | ||
|
|
||
| #### Here you can see two files .vcxproj(marked with blue arrows) and one .sln project(marked with a red arrow) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe change it to something like:
| #### Here you can see two files .vcxproj(marked with blue arrows) and one .sln project(marked with a red arrow) | |
| Open `windows/` directory to locate `ccextractor.vcxproj`, `ccextractorGUI.vcxproj` (blue arrows) and `ccextractor.sln` (red arrow). |
|
|
||
|  | ||
|
|
||
| You have to open .sln if you want to build both non GUI and GUI ccextractor or you can build them seperately opening .vcxproj files one by one. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| You have to open .sln if you want to build both non GUI and GUI ccextractor or you can build them seperately opening .vcxproj files one by one. | |
| Using Visual Studio (2015 or above), open `ccextractor.sln`. This will build both CCExtractor and its GUI. To build them separately, open the respective `.vcxproj` file. |
| You have to open .sln if you want to build both non GUI and GUI ccextractor or you can build them seperately opening .vcxproj files one by one. | ||
|
|
||
|
|
||
| #### Further, if you receive a confirmation request about downloading from unsafe resource just click OK and go forward</h4> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #### Further, if you receive a confirmation request about downloading from unsafe resource just click OK and go forward</h4> | |
| Accept the security prompt (if any), to proceed with compilation. |
docs/COMPILATION.MD
Outdated
|
|
||
|
|
||
| #### Further, if you receive a confirmation request about downloading from unsafe resource just click OK and go forward</h4> | ||
|  |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace all alt text with meaningful sentences.
| #### Further, if you receive a confirmation request about downloading from unsafe resource just click OK and go forward</h4> | ||
|  | ||
|
|
||
| #### Then if you opened .sln file you will have 2 projects on the right pannel GUI and non GUI and you can also open them separetely by opening .vcxproj files.</h4> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a redundant line, better to remove it and add tree structure in next line.
| #### Then if you opened .sln file you will have 2 projects on the right pannel GUI and non GUI and you can also open them separetely by opening .vcxproj files.</h4> | ||
|
|
||
|
|
||
| #### Also there are 2 parameters in parentheses near each project(Visual studio version and Windows release version) you have to change them to parameters which are true for you by clicking right mouse button on project and selecting properties. You can see this on the photo. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #### Also there are 2 parameters in parentheses near each project(Visual studio version and Windows release version) you have to change them to parameters which are true for you by clicking right mouse button on project and selecting properties. You can see this on the photo. | |
| In Solution Explorer, you'll see two projects with the VS version and Windows release version in parenthesis. Change them to parameters which are true for you by clicking right mouse button on project and selecting properties. |
|
|
||
|  | ||
|
|
||
| #### After that you can build these projects by clicking on each of them by mouse right button and selecting "build" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #### After that you can build these projects by clicking on each of them by mouse right button and selecting "build" | |
| Right click and select `build` to compile the project and generate executable file. |
|
|
||
|  | ||
|
|
||
| #### Finally you will get your exe files in folder called debug which will be created in folder windows if you complete all points above |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #### Finally you will get your exe files in folder called debug which will be created in folder windows if you complete all points above | |
| Find the executable file in `Debug` or `Release` folder, based on selected configuration. |
Please prefix your pull request with one of the following: [FEATURE] [FIX] [IMPROVEMENT].
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
{pull request content here}