forked from CleverRaven/Cataclysm-DDA
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from CleverRaven/master
catchup to cleverraven
- Loading branch information
Showing
1,321 changed files
with
99,814 additions
and
51,713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
!config/ | ||
!deps*.zip | ||
*.iml | ||
.cxx | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="app_name">Cataclysm DDA</string> | ||
<string name="installing">Installing game data...</string> | ||
<string name="upgrading">Upgrading game data...</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,8 @@ | ||
aftershock | ||
alt_map_key | ||
Animatronics | ||
Battery_Overhaul_Legacy_Mode | ||
blazemod | ||
cbm_slots | ||
classic_zombies | ||
crazy_cataclysm | ||
crt_expansion | ||
desertpack | ||
DinoMod | ||
ew_pack | ||
FIC_Weapons | ||
FujiStruct | ||
generic_guns | ||
Graphical_Overmap | ||
growable-pots | ||
Heavy miners | ||
hydroponics | ||
magiclysm | ||
manualbionicinstall | ||
mapgen_demo | ||
Medieval_Stuff | ||
MMA | ||
modular_turrets | ||
more_locations | ||
More_Survival_Tools | ||
mutant_npcs | ||
my_sweet_cataclysm | ||
national_guard_camp | ||
No_Anthills | ||
No_Bees | ||
no_faults | ||
no_filthy_clothing | ||
No_Fungi | ||
no_medieval_items | ||
no_npc_food | ||
No_Rail_Stations | ||
No_Triffids | ||
novitamins | ||
realguns | ||
safeautodoc | ||
Salvaged_Robots | ||
sees_player_hitbutton | ||
sees_player_retro | ||
sleepdeprivation | ||
speedydex | ||
stats_through_kills | ||
Tanks | ||
Tolerate_This | ||
Urban_Development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
# Cataclysm data files | ||
cmake_minimum_required(VERSION 2.8.12) | ||
cmake_minimum_required(VERSION 3.1.4) | ||
|
||
SET(CATACLYSM_DATA_DIRS | ||
${CMAKE_SOURCE_DIR}/data/font | ||
${CMAKE_SOURCE_DIR}/data/json | ||
${CMAKE_SOURCE_DIR}/data/mods | ||
${CMAKE_SOURCE_DIR}/data/names | ||
${CMAKE_SOURCE_DIR}/data/raw | ||
${CMAKE_SOURCE_DIR}/data/motd | ||
${CMAKE_SOURCE_DIR}/data/credits | ||
${CMAKE_SOURCE_DIR}/data/title | ||
${CMAKE_SOURCE_DIR}/data/font | ||
${CMAKE_SOURCE_DIR}/data/json | ||
${CMAKE_SOURCE_DIR}/data/mods | ||
${CMAKE_SOURCE_DIR}/data/names | ||
${CMAKE_SOURCE_DIR}/data/raw | ||
${CMAKE_SOURCE_DIR}/data/motd | ||
${CMAKE_SOURCE_DIR}/data/credits | ||
${CMAKE_SOURCE_DIR}/data/title | ||
) | ||
|
||
IF(SOUND) | ||
SET(CATACLYSM_DATA_DIRS | ||
${CATACLYSM_DATA_DIRS} | ||
${CMAKE_SOURCE_DIR}/data/sound | ||
) | ||
SET(CATACLYSM_DATA_DIRS | ||
${CATACLYSM_DATA_DIRS} | ||
${CMAKE_SOURCE_DIR}/data/sound | ||
) | ||
ENDIF(SOUND) | ||
|
||
IF(TILES) | ||
SET(CATACLYSM_DATA_DIRS | ||
${CATACLYSM_DATA_DIRS} | ||
${CMAKE_SOURCE_DIR}/gfx | ||
) | ||
SET(CATACLYSM_DATA_DIRS | ||
${CATACLYSM_DATA_DIRS} | ||
${CMAKE_SOURCE_DIR}/gfx | ||
) | ||
ENDIF(TILES) | ||
|
||
SET(CATACLYSM_DATA_FILES | ||
${CMAKE_SOURCE_DIR}/data/changelog.txt | ||
${CMAKE_SOURCE_DIR}/data/cataicon.ico | ||
${CMAKE_SOURCE_DIR}/data/fontdata.json | ||
${CMAKE_SOURCE_DIR}/LICENSE.txt | ||
${CMAKE_SOURCE_DIR}/data/changelog.txt | ||
${CMAKE_SOURCE_DIR}/data/cataicon.ico | ||
${CMAKE_SOURCE_DIR}/data/fontdata.json | ||
${CMAKE_SOURCE_DIR}/LICENSE.txt | ||
) | ||
|
||
IF(RELEASE) | ||
install(DIRECTORY ${CATACLYSM_DATA_DIRS} DESTINATION ${DATA_PREFIX}) | ||
install(FILES ${CATACLYSM_DATA_FILES} DESTINATION ${DATA_PREFIX}) | ||
install(DIRECTORY ${CATACLYSM_DATA_DIRS} DESTINATION ${DATA_PREFIX}) | ||
install(FILES ${CATACLYSM_DATA_FILES} DESTINATION ${DATA_PREFIX}) | ||
ENDIF(RELEASE) |
Oops, something went wrong.