Skip to content

Commit

Permalink
Update CMakeLists.txt, CI, and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesadi committed Jan 4, 2024
1 parent 3bda2c3 commit 3348597
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: C/C++ CI

on:
push:
branches: [ "llvm-14.0.6" ]
branches: [ "llvm-14.0.6", "main" ]
pull_request:
branches: [ "llvm-14.0.6" ]
branches: [ "llvm-14.0.6", "main" ]

jobs:
Ubuntu:
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ project(Pluto)

set(LLVM_ENABLE_PROJECTS "clang;lld" CACHE STRING "")
set(LLVM_TARGETS_TO_BUILD "X86" CACHE STRING "")
set(LLVM_ENABLE_LLD ON CACHE BOOL "")
set(LLVM_INCLUDE_BENCHMARKS OFF CACHE BOOL "")
add_subdirectory(llvm)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pluto
[English Documentation](README.md) | [中文文档](README_zh-cn.md)
[English](README.md) | [中文](README_zh-cn.md)

Pluto is a code obfuscator built on top of LLVM 14.0.6 (more in the future...). In summary, Pluto converts the source code into a functionally equivalent but much more complicated form at compile-time, protecting your software from being cracked.

Expand All @@ -9,7 +9,7 @@ Download source code:
$ git clone https://github.com/bluesadi/Pluto.git
```
### Ubuntu
Install z3 (required by MbaObfuscation):
Install z3 (required by MBAObfuscation):
```
$ sudo apt install libz3-dev
```
Expand All @@ -23,7 +23,7 @@ Install Ninja and other dependencies:
```
$ sudo apt install ninja-build cmake python3 gcc g++
```
Build and install Pluto to the ./install directory:
Build and install Pluto to `./install` directory:
```
$ ./build.sh
```

0 comments on commit 3348597

Please sign in to comment.