Skip to content

Commit 0f45a3c

Browse files
committed
fatxfs,gfatx: Add note about needing to install libfatx first
1 parent f3c06de commit 0f45a3c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

fatxfs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ How to Build (Natively)
1818
-----------------------
1919
### Prerequisites
2020

21+
Note: You'll need to build and install libfatx first.
22+
2123
#### Ubuntu
2224
Assuming you already have typical build tools installed, install FUSE and CMake:
2325

@@ -33,7 +35,7 @@ Assuming you have homebrew installed, install `pkgconfig` and `cmake`:
3335
### Download Source
3436
Clone the repository:
3537

36-
$ git clone https://github.com/mborgerson/fatx && cd fatx
38+
$ git clone https://github.com/mborgerson/fatx && cd fatx/fatxfs
3739

3840
### Build
3941
Create a build directory and run `cmake` to construct the Makefiles:

gfatx/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ A graphical utility for working with FATX disk images, built around libfatx.
55

66
Note: This tool is in a very early state, and only has the functionality to browse filesystems in a disk at the moment.
77

8+
Note: You'll need to build and install libfatx first.
9+
810
![gfatx](gfatx.png)
911

1012
## Build on Ubuntu
1113
```
1214
sudo apt install build-essential pkg-config cmake git qt6-base-dev qt6-tools-dev qt6-tools-dev-tools
13-
cd /path/to/fatx
15+
cd /path/to/fatx/gfatx
1416
mkdir build
1517
cd build
1618
cmake ..
@@ -24,7 +26,7 @@ make gfatx
2426

2527
```
2628
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat" amd64
27-
cd C:\path\to\fatx
29+
cd C:\path\to\fatx\gfatx
2830
mkdir build
2931
cd build
3032
cmake ..
@@ -38,7 +40,7 @@ export PATH="/usr/local/opt/qt@6/bin:$PATH"
3840
export LDFLAGS="-L/usr/local/opt/qt@6/lib"
3941
export CPPFLAGS="-I/usr/local/opt/qt@6/include"
4042
export PKG_CONFIG_PATH="/usr/local/opt/qt@6/lib/pkgconfig"
41-
cd /path/to/fatx
43+
cd /path/to/fatx/gfatx
4244
mkdir build
4345
cd build
4446
cmake --build . --target gfatx

0 commit comments

Comments
 (0)