reactos/dll/win32/jscript/CMakeLists.txt
Jérôme Gardou 4ee1da42f1 [CMAKE]
- rewrite spec2def macro because
1. cmake gracefully handles def files as source files
2. cmake gracefully handles autogenerated files as source
3. it did not take into account the fact that all shared libraries haven't the .dll extension

svn path=/branches/cmake-bringup/; revision=49358
2010-10-30 16:08:19 +00:00

54 lines
868 B
CMake

ADD_TYPELIB(jsglobal jsglobal.idl)
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
add_definitions(
-D__WINESRC__
-D_DLL
-D__USE_CRTIMP)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(jscript.dll jscript.spec)
add_library(jscript SHARED
activex.c
date.c
dispex.c
engine.c
error.c
jscript.c
jscript_main.c
jsutils.c
lex.c
parser.tab.c
math.c
number.c
object.c
regexp.c
string.c
array.c
bool.c
function.c
global.c
rsrc.rc
${CMAKE_CURRENT_BINARY_DIR}/jscript.def)
set_module_type(jscript win32dll)
target_link_libraries(jscript wine)
add_importlibs(jscript
msvcrt
user32
ole32
oleaut32
advapi32
kernel32
ntdll)
add_dependencies(jscript jsglobal stdole2)
add_cab_target(jscript 1)