This project is based on LLVM's libtooling library, so you have to build llvm first. Then it uses CMake's find_package() function to find LLVM library, this means you don't need to specific libraries in CMakeLists.txt file, all depend on LLVMConfig.cmake
and ClangConfig.cmake
files.
Understand it more details, please read CMakeLists.txt
and azure-pipelines.yml
.
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
- git
- cmake
- ninja
- python3
- Compilers
- Windows: Visual Studio 2019 Community
- Linux : gcc
- MacOS : clang
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
git clone https://github.com/dougpuob/cpp-namelint.git cppnamelint.git
cd cppnamelint.git
git submodule init
git submodule update
mkdir build
cd build
cmake .. -DLLVM_INSTALL_DIR="C:\petzone\llvm\llvm-prebuilt\llvmorg-11.1.0-msbuild-vs2019-x64-rel" -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
git clone https://github.com/dougpuob/cpp-namelint.git cppnamelint.git
cd cppnamelint.git
git submodule init
git submodule update
mkdir build
cd build
cmake .. -DLLVM_INSTALL_DIR="~\llvm\llvm-prebuilt\llvmorg-11.1.0-ninja-gcc-x64-rel"
cmake --build . --config Release
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
$ cd cpp-namelint.git/script
$ powershell.exe "./build-pack-win32.ps1"
.cd release
$ powershell.exe "./build-test-win32.ps1"
$ cd cpp-namelint.git/script
$ build-pack-linux.sh
cd release
$ build-test-linux.sh
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖