mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
0dfa12e039
- add fontview to build - add experimental solitaire build file svn path=/branches/cmake-bringup/; revision=48890
16 lines
No EOL
316 B
CMake
16 lines
No EOL
316 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/cardlib)
|
|
|
|
add_executable(sol
|
|
solcreate.cpp
|
|
solgame.cpp
|
|
solitaire.cpp
|
|
rsrc.rc)
|
|
|
|
set_unicode(sol yes)
|
|
|
|
set_module_type(sol win32gui)
|
|
|
|
target_link_libraries(sol cardlib)
|
|
|
|
add_importlibs(sol advapi32 comctl32 user32 gdi32 stdc++ gcc mingw32 msvcrt) |