diff options
author | pommicket <pommicket@gmail.com> | 2023-01-08 17:30:47 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-09 13:24:03 -0500 |
commit | 1051788217ead36b554efe38259dfd257e851fc2 (patch) | |
tree | a069061d093408ce04fa77d06aa45abbe7b8e1db /CMakeLists.txt | |
parent | ea70e513d8a927680f2795d4bad9aba788f32d77 (diff) |
windows cmake build
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0315b11..a12c9b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,23 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.1) project(ted) set(SOURCES buffer.c build.c colors.c command.c config.c find.c gl.c ide-autocomplete.c ide-definitions.c ide-highlights.c ide-hover.c ide-signature-help.c ide-usages.c lsp.c lsp-json.c lsp-parse.c lsp-write.c main.c menu.c node.c os.c session.c stb_image.c stb_truetype.c syntax.c tags.c ted.c text.c ui.c util.c) -add_executable(ted ${SOURCES}) +if (MSVC) + add_executable(ted WIN32 ${SOURCES}) +else() + add_executable(ted ${SOURCES}) +endif() target_compile_definitions(ted PUBLIC DEBUG=1) -target_link_libraries(ted m SDL2) -target_link_libraries(ted ${CMAKE_SOURCE_DIR}/libpcre2-32.a) +if(MSVC) + target_sources(ted PRIVATE ted.res) + target_include_directories(ted PUBLIC ${CMAKE_SOURCE_DIR}/SDL2/include ${CMAKE_SOURCE_DIR}/pcre2) + target_compile_options(ted PRIVATE /MD /W4 /wd4200 /wd4204 /wd4221 /wd4706 /wd4214 /D_CRT_SECURE_NO_WARNINGS) + set(SDL2_LIB_DIR ${CMAKE_SOURCE_DIR}/SDL2/lib/x64) + target_link_libraries(ted ${SDL2_LIB_DIR}/SDL2.lib) + target_link_libraries(ted ${CMAKE_SOURCE_DIR}/pcre2-32-static.lib) +else() + target_link_libraries(ted m SDL2) + target_link_libraries(ted ${CMAKE_SOURCE_DIR}/libpcre2-32.a) +endif() |