This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
About to create project $$root$$.$$VALVE_TARGET_TYPE$$:
Located in $$FULL_DIR_PATH$$
Target $$root$$.$$VALVE_TARGET_TYPE$$ will be copied into $$VALVE_TARGET_PATH$$
$$IF(PROJTYPE_DLL)
$$IF(VALVE_PUBLISH_IMPORT_LIB)
Import library $$root$$.lib will be copied into $$VALVE_IMPLIB_PATH$$
$$ENDIF
$$ENDIF
$$IF(PROJTYPE_DLL || PROJTYPE_LIB)
Creating directory $$VALVE_ROOT_SRC_PATH$$common\$$root$$
$$IF(VALVE_PUBLIC_PROJECT)
Creating directory $$VALVE_ROOT_SRC_PATH$$public\$$root$$
$$ENDIF
Public Valve internal interfaces should be placed into
$$VALVE_ROOT_SRC_PATH$$common\$$root$$
$$IF(VALVE_PUBLIC_PROJECT)
Public Mod-visible interfaces should be placed into
$$VALVE_ROOT_SRC_PATH$$public\$$root$$
$$ENDIF
$$ENDIF
$$IF(PROJTYPE_DLL)
$$ROOT$$_DLL_EXPORT is defined for this project
$$ENDIF
+20
View File
@@ -0,0 +1,20 @@
$$// newproj.inf = template for list of template files
$$// format is 'sourceResName' \t 'destFileName'
$$// The source res name may be preceded by any combination of '=', '-', '!', '?', ':', '#', and/or '*'
$$// '=' => the resource is binary
$$// '-' => the file should not be added to the project (all files are added to the project by default)
$$// '!' => the file should be marked exclude from build
$$// '?' => the file should be treated as a help file
$$// ':' => the file should be treated as a resource
$$// '#' => the file should be treated as a template (implies '!')
$$// '*' => bypass the custom AppWizard's resources when loading
$$// if name starts with / => create new subdir
$$IF(PROJTYPE_DLL || PROJTYPE_LIB)
/$$VALVE_SRC_RELATIVE_PATH$$common\$$root$$
$$IF(VALVE_PUBLIC_PROJECT)
/$$VALVE_SRC_RELATIVE_PATH$$public\$$root$$
$$ENDIF
$$ENDIF