mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-20 10:13:13 -04:00
rename Source/ directory to src/ (#598)
* rename Source/ directory to src/ * adjust cppcheck directories
This commit is contained in:
parent
676b7e8347
commit
8e2ae605a8
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
if [ "$ANALYZE" = "true" ]
|
||||
then
|
||||
cppcheck --error-exitcode=1 -j2 -DRANGECHECK -D_WIN32 -ISource Source toolsrc 2> stderr.txt
|
||||
cppcheck --error-exitcode=1 -j2 -DRANGECHECK -D_WIN32 -Isrc src toolsrc 2> stderr.txt
|
||||
RET=$?
|
||||
if [ -s stderr.txt ]
|
||||
then
|
||||
|
@ -192,6 +192,6 @@ include(CPack)
|
||||
add_subdirectory(data)
|
||||
add_subdirectory(opl)
|
||||
add_subdirectory(textscreen)
|
||||
add_subdirectory(Source)
|
||||
add_subdirectory(src)
|
||||
add_subdirectory(toolsrc)
|
||||
add_subdirectory(setup)
|
||||
|
10
README.md
10
README.md
@ -96,7 +96,7 @@ Once installed, compilation should be as simple as:
|
||||
make
|
||||
```
|
||||
|
||||
After successful compilation the resulting binary can be found in the `Source/` directory.
|
||||
After successful compilation the resulting binary can be found in the `src/` directory.
|
||||
|
||||
## Windows with Visual Studio
|
||||
|
||||
@ -166,18 +166,18 @@ Copyright:
|
||||
© 2020-2022 Roman Fomin.
|
||||
License: [GPL-2.0+](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
|
||||
|
||||
Files: `Source/beta.h`
|
||||
Files: `src/beta.h`
|
||||
Copyright: © 2001-2019 Contributors to the Freedoom project.
|
||||
License: [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
|
||||
|
||||
Files: `Source/dogs.h`
|
||||
Files: `src/dogs.h`
|
||||
Copyright:
|
||||
© 2017 Nash Muhandes;
|
||||
© apolloaiello;
|
||||
© TobiasKosmos.
|
||||
License: [CC-BY-3.0](https://creativecommons.org/licenses/by/3.0/) and [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/)
|
||||
|
||||
Files: `Source/u_scanner.*`
|
||||
Files: `src/u_scanner.*`
|
||||
Copyright:
|
||||
© 2010 Braden "Blzut3" Obrzut;
|
||||
© 2019 Fernando Carmona Varo.
|
||||
@ -191,7 +191,7 @@ Files: `cmake/FindSDL2.cmake, cmake/FindSDL2_mixer.cmake, cmake/FindSDL2_net.cma
|
||||
Copyright: © 2018 Alex Mayfield.
|
||||
License: [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
|
||||
|
||||
Files: `data/woof.ico, data/woof.png, data/woof8.ico, Source/icon.c, data/setup.ico, data/woof-setup.png, data/setup8.ico, setup/setup_icon.c, Source/thermo.h`
|
||||
Files: `data/woof.ico, data/woof.png, data/woof8.ico, src/icon.c, data/setup.ico, data/woof-setup.png, data/setup8.ico, setup/setup_icon.c, src/thermo.h`
|
||||
Copyright: © 2020-2022 Julia Nechaevskaya.
|
||||
License: [CC-BY-3.0](https://creativecommons.org/licenses/by/3.0/)
|
||||
|
||||
|
@ -9,6 +9,6 @@ target_woof_settings(setup)
|
||||
|
||||
target_include_directories(setup
|
||||
INTERFACE "."
|
||||
PRIVATE "../Source/" "${CMAKE_CURRENT_BINARY_DIR}/../")
|
||||
PRIVATE "../src/" "${CMAKE_CURRENT_BINARY_DIR}/../")
|
||||
|
||||
target_link_libraries(setup textscreen SDL2::SDL2)
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user