Changes between Version 26 and Version 27 of InstallCmake
- Timestamp:
- 09/22/13 08:07:58 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallCmake
v26 v27 78 78 === With IDE === 79 79 80 Open the generated '''{{{LEMON.sln}}}''' file in Visual Studio (or just click on it in the Windows Explorer), then you will find several targets corresponding to the tasks of the previous section. They are 81 - {{{ALL_BUILD}}} 82 - {{{RUN_TESTS}}} 83 - {{{HTML}}} 84 - {{{INSTALL}}} 80 Open the generated '''{{{LEMON.sln}}}''' file in Visual Studio (or just click on it in the Windows Explorer), then select `Build`->`Build Solution F7` in the menu to build everything. You can also build any target - such as {{{dimacs-solver}}}, {{{dimacs-to-lgf}}} etc. - individually. There are also some special targets: 85 81 86 Simply right click and choose "Build" for each of these target (in the above order). 82 - {{{ALL_BUILD}}} builds everything including the library, the tools, the tests and the documentation. But does not execute the tests, 83 - {{{RUN_TESTS}}} executes all the self-test, 84 - {{{BUILD_DOC}}} generates the HTML doc, 85 - {{{INSTALL}}} installs the headers, the lib, the tools etc. under the specified folder. 86 87 Simply right click and choose "Build" for any of the above target.