$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Reece Dunn (msclrhd_at_[hidden])
Date: 2005-11-16 10:53:55
>How do I compile in a .rc file for a Windows shared library?
Easy:
lib mydll : main.cpp impl.cpp *resource.rc* : <link>shared ;
same for an exe:
exe myapp : main.cpp *resource.rc* ;
(without the *'s) :)
- Reece