Skip to content

Commit

Permalink
Add meta.cpp file, steam workshop support (#246)
Browse files Browse the repository at this point in the history
* Add meta.cpp file, steam workshop support

* Added meta.cpp to be copied in Makefile
  • Loading branch information
mharis001 authored Nov 8, 2019
1 parent a6e3b19 commit c816383
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ push: commit
release: clean version commit
@"$(MAKE)" $(MAKEFLAGS) signatures
@echo " ZIP $(ZIP)_$(VERSION_F)-$(GIT_HASH).zip"
@cp mod.cpp README.md AUTHORS.txt LICENSE logo_zen_ca.paa logo_zen_small_ca.paa $(BIN)
@cp mod.cpp README.md AUTHORS.txt LICENSE logo_zen_ca.paa logo_zen_small_ca.paa meta.cpp $(BIN)
@zip -qr $(ZIP)_$(VERSION_F)-$(GIT_HASH).zip $(BIN)

releaseCI: clean version
@"$(MAKE)" $(MAKEFLAGS) signatures
@echo " TAR $(ZIP)_$(VERSION_F)-$(GIT_HASH).tar.gz"
@cp mod.cpp README.md AUTHORS.txt LICENSE logo_zen_ca.paa logo_zen_small_ca.paa $(BIN)
@cp mod.cpp README.md AUTHORS.txt LICENSE logo_zen_ca.paa logo_zen_small_ca.paa meta.cpp $(BIN)
@tar -czf $(ZIP)_$(VERSION_F)-$(GIT_HASH).tar.gz $(BIN)
@ls

Expand Down
2 changes: 2 additions & 0 deletions meta.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
protocol = 1;
publishedid = 1779063631;
2 changes: 1 addition & 1 deletion tools/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
prefix = "zen"
pbo_name_prefix = "zen_"
signature_blacklist = []
importantFiles = ["mod.cpp", "README.md", "AUTHORS.txt", "LICENSE", "logo_zen_ca.paa", "logo_zen_small_ca.paa"]
importantFiles = ["mod.cpp", "meta.cpp", "README.md", "AUTHORS.txt", "LICENSE", "logo_zen_ca.paa", "logo_zen_small_ca.paa"]
versionFiles = ["README.md", "mod.cpp"]

ciBuild = False # Used for CI builds
Expand Down

0 comments on commit c816383

Please sign in to comment.