Skip to content

Commit 4cdec43

Browse files
committed
remove submodules, add full physfs
1 parent 9dc9394 commit 4cdec43

10 files changed

+73
-25791
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
build
22
.vscode
3+
.DS_Store

.gitmodules

-8
This file was deleted.

CMakeLists.txt

+69-24
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,72 @@ project (raylib-physfs
66
LANGUAGES C
77
)
88

9-
# Include Directory
10-
add_subdirectory(include)
11-
12-
# Options
13-
if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
14-
set(RAYLIB_PHYSFS_IS_MAIN TRUE)
15-
else()
16-
set(RAYLIB_PHYSFS_IS_MAIN FALSE)
17-
endif()
18-
option(RAYLIB_PHYSFS_BUILD_EXAMPLES "Examples" ${RAYLIB_PHYSFS_IS_MAIN})
19-
20-
# Examples
21-
if (RAYLIB_PHYSFS_BUILD_EXAMPLES)
22-
add_subdirectory(examples)
23-
24-
# Testing
25-
if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
26-
include(CTest)
27-
enable_testing()
28-
if (BUILD_TESTING)
29-
add_subdirectory(test)
30-
endif()
31-
endif()
32-
endif()
9+
include(FetchContent)
10+
11+
# Adding Raylib for graphics
12+
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples
13+
set(BUILD_GAMES OFF CACHE BOOL "" FORCE) # don't build the supplied example games
14+
FetchContent_Declare(raylib GIT_REPOSITORY https://github.com/raysan5/raylib.git GIT_TAG master)
15+
FetchContent_MakeAvailable(raylib)
16+
17+
# Adding PhysFS for filesystem abstraction
18+
# You can change these to support other formats
19+
set(PHYSFS_ARCHIVE_ZIP ON CACHE BOOL "" FORCE)
20+
set(PHYSFS_ARCHIVE_7Z OFF CACHE BOOL "" FORCE)
21+
set(PHYSFS_ARCHIVE_GRP OFF CACHE BOOL "" FORCE)
22+
set(PHYSFS_ARCHIVE_WAD OFF CACHE BOOL "" FORCE)
23+
set(PHYSFS_ARCHIVE_HOG OFF CACHE BOOL "" FORCE)
24+
set(PHYSFS_ARCHIVE_MVL OFF CACHE BOOL "" FORCE)
25+
set(PHYSFS_ARCHIVE_QPAK OFF CACHE BOOL "" FORCE)
26+
set(PHYSFS_ARCHIVE_SLB OFF CACHE BOOL "" FORCE)
27+
set(PHYSFS_ARCHIVE_ISO9660 OFF CACHE BOOL "" FORCE)
28+
set(PHYSFS_ARCHIVE_VDF OFF CACHE BOOL "" FORCE)
29+
30+
# library options
31+
set(PHYSFS_BUILD_STATIC ON CACHE BOOL "" FORCE)
32+
set(PHYSFS_BUILD_SHARED OFF CACHE BOOL "" FORCE)
33+
set(PHYSFS_BUILD_TEST OFF CACHE BOOL "" FORCE)
34+
set(PHYSFS_BUILD_DOCS OFF CACHE BOOL "" FORCE)
35+
set(PHYSFS_DISABLE_INSTALL OFF CACHE BOOL "" FORCE)
36+
37+
FetchContent_Declare(physfs GIT_REPOSITORY https://github.com/icculus/physfs.git GIT_TAG main)
38+
FetchContent_MakeAvailable(physfs)
39+
include_directories(${physfs_SOURCE_DIR}/src)
40+
41+
# demos
42+
43+
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/examples/audio/resources/ DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/resources/)
44+
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/examples/shaders/resources/ DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/resources/)
45+
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/examples/text/resources/ DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/resources/)
46+
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/examples/textures/resources/ DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/resources/)
47+
48+
add_executable(audio_music_stream)
49+
target_sources(audio_music_stream PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/audio/audio_music_stream.c")
50+
target_include_directories(audio_music_stream PRIVATE ".")
51+
target_link_libraries(audio_music_stream PRIVATE raylib physfs-static)
52+
53+
add_executable(audio_sound_loading)
54+
target_sources(audio_sound_loading PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/audio/audio_sound_loading.c")
55+
target_include_directories(audio_sound_loading PRIVATE ".")
56+
target_link_libraries(audio_sound_loading PRIVATE raylib physfs-static)
57+
58+
add_executable(shaders_texture_waves)
59+
target_sources(shaders_texture_waves PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/shaders/shaders_texture_waves.c")
60+
target_include_directories(shaders_texture_waves PRIVATE ".")
61+
target_link_libraries(shaders_texture_waves PRIVATE raylib physfs-static)
62+
63+
add_executable(text_basic_loading)
64+
target_sources(text_basic_loading PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/text/text_basic_loading.c")
65+
target_include_directories(text_basic_loading PRIVATE ".")
66+
target_link_libraries(text_basic_loading PRIVATE raylib physfs-static)
67+
68+
add_executable(text_font_loading)
69+
target_sources(text_font_loading PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/text/text_font_loading.c")
70+
target_include_directories(text_font_loading PRIVATE ".")
71+
target_link_libraries(text_font_loading PRIVATE raylib physfs-static)
72+
73+
add_executable(textures_image_loading)
74+
target_sources(textures_image_loading PRIVATE "${CMAKE_CURRENT_LIST_DIR}/examples/textures/textures_image_loading.c")
75+
target_include_directories(textures_image_loading PRIVATE ".")
76+
target_link_libraries(textures_image_loading PRIVATE raylib physfs-static)
77+

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ Load [raylib](https://www.raylib.com/) images, sounds, music, fonts and shaders
1515

1616
## Usage
1717

18-
This is a header-only library. To use it, define `RAYLIB_PHYSFS_IMPLEMENTATION` in one `.c` source file before including [`raylib-physfs.h`](include/raylib-physfs.h). You will also have to link the raylib dependencies.
18+
This is a header-only library. To use it, define `RAYLIB_PHYSFS_IMPLEMENTATION` in one `.c` source file before including [`raylib-physfs.h`](include/raylib-physfs.h). You will also have to link the raylib & physfs dependencies.
1919

2020
### Example
2121

2222
``` c
2323
#define RAYLIB_PHYSFS_IMPLEMENTATION
24-
#define PHYSFS_SUPPORTS_ONLY_ZIP
2524
#include "raylib-physfs.h"
2625

2726
int main() {
@@ -70,11 +69,8 @@ const char* GetPerfDirectory(const char *org, const char *app); // Get the user'
7069
7170
### Defines
7271
73-
Add these defines to help shape the behaviour of raylib-physfs...
72+
Have a look at [Cmake config](CMakeLists.txt) to see how to define different things that change the behavior of physfs, raylib, and raylib-physfs.
7473
75-
- `RAYLIB_PHYSFS_IMPLEMENTATION` Define this in one of your `.c`/`.cpp` files prior to including *raylib-physfs.h*
76-
- `RAYLIB_PHYSFS_STATIC` Use [`static`](https://en.wikipedia.org/wiki/Static_(keyword)) function definitions
77-
- `PHYSFS_SUPPORTS_ONLY_ZIP` Only support .zip archives, rather than all the available ones.
7874
7975
## Development
8076

examples/CMakeLists.txt

-65
This file was deleted.

include/CMakeLists.txt

-9
This file was deleted.

0 commit comments

Comments
 (0)