mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
33a0b314cd
- add kernelmodedriver module type - add set_cpp macro, which takes care of all c++ stuff for you - hackfix stlport headers for c++ kernel mode modules. - complain about explorer - solitaire, telnet and uniata now build happily against stlport svn path=/branches/cmake-bringup/; revision=49141
17 lines
310 B
CMake
17 lines
310 B
CMake
|
|
set_unicode()
|
|
set_cpp()
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/cardlib)
|
|
|
|
add_executable(sol
|
|
solcreate.cpp
|
|
solgame.cpp
|
|
solitaire.cpp
|
|
rsrc.rc)
|
|
|
|
target_link_libraries(sol cardlib)
|
|
|
|
set_module_type(sol win32gui)
|
|
|
|
add_importlibs(sol advapi32 comctl32 user32 gdi32 kernel32 msvcrt)
|