blob: aee657a982cadc6a266bd71b9cd873dd390c6cfb (
plain)
1
2
3
4
5
6
7
8
9
10
|
file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc")
if(CMAKE_CL_64)
list(APPEND SOURCES "src/mir_app64.def")
else()
list(APPEND SOURCES "src/mir_app.def")
endif()
set(TARGET mir_app)
include(${CMAKE_SOURCE_DIR}/cmake/lib.cmake)
target_link_libraries(${TARGET} Zlib UxTheme.lib ws2_32.lib)
set_target_properties(${TARGET} PROPERTIES COMPILE_DEFINITIONS "MIR_APP_EXPORTS")
|