View Single Post
  #12  
Old 10-03-2022, 17:03
Insid3Code's Avatar
Insid3Code Insid3Code is offline
Family
 
Join Date: May 2013
Location: Algeria
Posts: 84
Rept. Given: 47
Rept. Rcvd 60 Times in 30 Posts
Thanks Given: 24
Thanks Rcvd at 108 Times in 56 Posts
Insid3Code Reputation: 60
Quote:
Originally Posted by Zeocrack View Post
Hello Insid3Coder

Would you please share how you did in command line?
Thanks
You need some basic knowledge about command line compilation...

to build resource: (generate *.res)
rc.exe /l 0x0C09 /n /r /x tuneup.rc

to compile: (generate *.obj)
cl.exe /I"MIRACL" /I"include" /D "WIN32" /X /c /O1 /Zl /Os /GF /EHsc /GS- /W4 /Gd tuneup.cpp MIRACL\*.c

to link: (generate final *.exe)
link.exe *.obj /LIBPATH:"lib" /MACHINE:X86 *.res /ENTRY:WinMain *.lib /OUT:"release\X86\tuneup32.exe"

Don't forget to adjust your PATHS regarding your MSVC installation (includes path, libs path)...
__________________
Computer Forensics
Reply With Quote
The Following 2 Users Say Thank You to Insid3Code For This Useful Post:
niculaita (10-04-2022), Zeocrack (10-04-2022)