mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
4efda499f7
Jerome Gardou: - Add STLport 5.2.1 (yes, STLport, the c++ stl implementation) to build. For now, it works only in user mode. - Link some c++ executables to it - sol.exe : one step towards a complete and modern OS. - Dedicated to Amine for his patience and his help. - Might Break Things! (tm) svn path=/branches/cmake-bringup/; revision=49046
16 lines
299 B
CMake
16 lines
299 B
CMake
|
|
set_unicode()
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/cardlib)
|
|
|
|
add_executable(sol
|
|
solcreate.cpp
|
|
solgame.cpp
|
|
solitaire.cpp
|
|
rsrc.rc)
|
|
|
|
target_link_libraries(sol stlport cardlib)
|
|
|
|
set_module_type(sol win32gui)
|
|
|
|
add_importlibs(sol advapi32 comctl32 user32 gdi32 msvcrt)
|