Skip to content

Commit cb2c249

Browse files
committed
chore: docs and xion updates
1 parent 05268ba commit cb2c249

File tree

4 files changed

+8
-63
lines changed

4 files changed

+8
-63
lines changed

.cmake-format

-57
This file was deleted.

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ project(
1212
include(GNUInstallDirs)
1313

1414
if(MSVC)
15-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:__cplusplus /utf-8 /D_CRT_SECURE_NO_DEPRECATE /W4 /WX")
16-
else()
17-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic -Werror")
15+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:__cplusplus /utf-8 /D_CRT_SECURE_NO_DEPRECATE /W4 /WX")
16+
else()
17+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic -Werror")
1818
endif()
1919

2020
include(cmake/CPM.cmake)

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,18 @@ git submodule update --init --recursive
2222

2323
#### Windows (mingw/msys)
2424

25-
2625
```bash
27-
pacman -S mingw-w64-i686-python3
26+
pacman -S git wget mingw-w64-x86_64-clang mingw-w64-x86_64-gcc mingw-w64-x86_64-ninja mingw-w64-x86_64-cmake make mingw-w64-x86_64-python3 autoconf libtool
2827
mkdir build
2928
cd build
3029
cmake .. -DCMAKE_BUILD_TYPE=Debug
3130
make
3231

3332
```
3433

34+
[More information on llvm in mingw.](https://github.com/mstorsjo/llvm-mingw)
35+
36+
3537
### Resources
3638

3739
* [Simple and Efficient Construction of Static Single

0 commit comments

Comments
 (0)