You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-15Lines changed: 6 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,6 @@ David Lafreniere, Jan 2022.
18
18
-[Introduction](#introduction)
19
19
-[What is SSP?](#what-is-ssp)
20
20
-[Project Build](#project-build)
21
-
-[Windows Visual Studio](#windows-visual-studio)
22
-
-[Linux Make](#linux-make)
23
21
-[Overview](#overview)
24
22
-[Using the Code](#using-the-code)
25
23
-[Usage Notes](#usage-notes)
@@ -129,21 +127,14 @@ David Lafreniere, Jan 2022.
129
127
130
128
# Project Build
131
129
132
-
<ahref="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.
133
131
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.
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.
0 commit comments