News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Bild.bat

Started by dedndave, April 07, 2013, 10:16:03 AM

Previous topic - Next topic

frktons

I'm glad to see you are working on the shell extension you
talked about some months ago.  :t
Nice start Dave, you are almost there.  ;)
There are only two days a year when you can't do anything: one is called yesterday, the other is called tomorrow, so today is the right day to love, believe, do and, above all, live.

Dalai Lama

nidud

#16
deleted

dedndave

yes - i am aware of make   :P
if you choose to use make, then you probably don't need the batch file

the batch file will assemble most simple projects
for example, i have a GUI app that uses the following source files
the batch file builds it with no trouble
Project.asm
Project.bmp
Project.ico
Project.inc
Project.rc
Project.xml


as for the library and include paths, the masm32 package uses hard-coded root-relative paths
if you specify a path in an INCLUDE or INCLUDELIB directive, it overrides the environment variables
on my machine, the INCLUDE and LIB variables are set up for VS   :P
ML, LINK, etc happily ignore them because paths are specified in the source

i actually wrote the batch file for use with the masm32 package, but i may expand on it, later