mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
957e566a23
This became a requirement, following a previous CMake update.
Otherwise the built EXEs would not export their intended functions.
Addendum to commit d8e92b5a
(see PR #1335)
CORE-15406
[LOADCONFIG] The GCC rant had nothing to do with GCC, but everything with CMake...
[SPOOLSV] Add the missing exported stubs.
22 lines
632 B
CMake
22 lines
632 B
CMake
|
|
spec2def(loadconfig_apitest.exe loadconfig_apitest.spec)
|
|
|
|
list(APPEND SOURCE
|
|
common.c
|
|
stacktrace.c
|
|
loadconfig.h)
|
|
|
|
add_executable(loadconfig_apitest ${SOURCE} testlist.c ${CMAKE_CURRENT_BINARY_DIR}/loadconfig_apitest.def)
|
|
|
|
set_target_properties(loadconfig_apitest
|
|
PROPERTIES
|
|
ENABLE_EXPORTS TRUE
|
|
DEFINE_SYMBOL "")
|
|
|
|
target_link_libraries(loadconfig_apitest wine ${PSEH_LIB})
|
|
set_module_type(loadconfig_apitest win32cui)
|
|
add_importlibs(loadconfig_apitest msvcrt kernel32 ntdll)
|
|
#add_pch(loadconfig_apitest loadconfig.h SOURCE)
|
|
add_rostests_file(TARGET loadconfig_apitest)
|
|
|
|
fixup_load_config(loadconfig_apitest)
|