1
0
forked from 0ad/0ad

add whrt dir, remove winmm delayload and dsound dependency

(workspace must be updated)

This was SVN commit r5095.
This commit is contained in:
janwas 2007-05-26 17:17:47 +00:00
parent 2fee886a34
commit 349d9b9afe
2 changed files with 5 additions and 3 deletions

View File

@ -72,7 +72,7 @@ extern_lib_defs = {
unix_names = { "IL", "ILU" },
},
directx = {
win_names = { "ddraw", "dsound" },
win_names = { "ddraw", },
dbg_suffix = "",
},
fcollada = {

View File

@ -394,7 +394,8 @@ function setup_all_libs ()
sysdep_dirs = {
linux = { "lib/sysdep/unix" },
-- note: RC file must be added to main_exe package.
windows = { "lib/sysdep/win", "lib/sysdep/win/wposix" },
-- note: don't add "lib/sysdep/win/aken.cpp" because that must be compiled with the DDK.
windows = { "lib/sysdep/win", "lib/sysdep/win/wposix", "lib/sysdep/win/whrt" },
macosx = { "lib/sysdep/osx", "lib/sysdep/unix" },
}
tinsert(package.files, sourcesfromdirs(source_root, sysdep_dirs[OS]));
@ -467,7 +468,8 @@ function setup_main_exe ()
"/DELAYLOAD:user32.dll",
"/DELAYLOAD:ws2_32.dll",
"/DELAYLOAD:version.dll",
"/DELAYLOAD:winmm.dll",
-- allow manual unload of delay-loaded DLLs
"/DELAY:UNLOAD"
}