mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
db37322eb6
- link executables against gcc and mingw_common - remove link dependencies from mingw_common This puts C executables into a good shape again. svn path=/branches/cmake-bringup/; revision=49054
19 lines
358 B
CMake
19 lines
358 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE
|
|
about.c
|
|
charmap.c
|
|
lrgcell.c
|
|
map.c
|
|
charmap.rc)
|
|
|
|
add_executable(charmap
|
|
${CMAKE_CURRENT_BINARY_DIR}/charmap_precomp.h.gch
|
|
${SOURCE})
|
|
|
|
add_pch(charmap ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
|
|
set_module_type(charmap win32gui)
|
|
|
|
add_importlibs(charmap user32 gdi32 comctl32 kernel32 msvcrt)
|