From 52921a9e13484319df2d4f1153521f3f5e12b932 Mon Sep 17 00:00:00 2001 From: Vitaly Svyastyn Date: Sun, 5 Nov 2017 19:33:01 +0600 Subject: More CMake (#1016) * Generate version information before build. * Removed /EHsc from compile options. * CMake files for the rest of protocols. * CMake 64 bit build. * CMake: precompiled headers. --- src/mir_app/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/mir_app/CMakeLists.txt') diff --git a/src/mir_app/CMakeLists.txt b/src/mir_app/CMakeLists.txt index 8e72c06f59..fa73635191 100644 --- a/src/mir_app/CMakeLists.txt +++ b/src/mir_app/CMakeLists.txt @@ -1,4 +1,9 @@ -file(GLOB SOURCES "src/*.h" "src/*.cpp" "src/mir_app.def" "res/*.rc") +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) -- cgit v1.2.3