Skip to content

Commit ee05dc8

Browse files
committed
Doc update
1 parent be1f369 commit ee05dc8

1 file changed

Lines changed: 6 additions & 15 deletions

File tree

README.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ David Lafreniere, Jan 2022.
1818
- [Introduction](#introduction)
1919
- [What is SSP?](#what-is-ssp)
2020
- [Project Build](#project-build)
21-
- [Windows Visual Studio](#windows-visual-studio)
22-
- [Linux Make](#linux-make)
2321
- [Overview](#overview)
2422
- [Using the Code](#using-the-code)
2523
- [Usage Notes](#usage-notes)
@@ -129,21 +127,14 @@ David Lafreniere, Jan 2022.
129127

130128
# Project Build
131129

132-
<a href="https://www.cmake.org">CMake</a> is used to create the build files. CMake is free and open-source software. Windows, Linux and other toolchains are supported. Example CMake console commands located inside <code>CMakeLists.txt</code>.
130+
[CMake](https://cmake.org/) is used to create the project build files on any Windows or Linux machine.
133131

134-
See `ssp_opt.h` to configure the sample application build options for each target platform.
135-
136-
## Windows Visual Studio
137-
138-
<code>cmake -G "Visual Studio 17 2022" -A Win32 -B build -S .</code>
139-
140-
After executed, open the Visual Studio project from within the <code>build</code> directory.
132+
1. Clone the repository.
133+
2. From the repository root, run the following CMake command:
134+
`cmake -B Build .`
135+
3. Build and run the project within the `Build` directory.
141136

142-
## Linux Make
143-
144-
<code>cmake -G "Unix Makefiles" -B build -S .</code>
145-
146-
After executed, build the software from within the <code>build</code> directory using the command <code>make</code>. Run the console app using <code>./SimpleSocketProtocolApp</code>.
137+
See `ssp_opt.h` to configure the sample application build options for each target platform.
147138

148139
# Overview
149140

0 commit comments

Comments
 (0)