Skip to content

Commit

Permalink
Repackage with updated MSVC (#191)
Browse files Browse the repository at this point in the history
* 0.5.1

* using c++20
  • Loading branch information
Raffaello authored Jul 8, 2023
1 parent 6e365f6 commit 278a169
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (POLICY CMP0141)
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
endif()

project ("sdl2-vga-terminal" VERSION 0.5.0 DESCRIPTION "Vga Terminal on SDL2")
project ("sdl2-vga-terminal" VERSION 0.5.1 DESCRIPTION "Vga Terminal on SDL2")


################################ Packages ####################################
Expand Down
2 changes: 1 addition & 1 deletion sdl2-vga-terminal/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.16)


set (CMAKE_CXX_STANDARD 17)
set (CMAKE_CXX_STANDARD 20)
set (CMAKE_DEBUG_POSTFIX d)

find_package(SDL2 CONFIG REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion sdl2-vga-terminal/test/so-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TEST(VgaTerminalSO, simpleRunningTest)
VGA_Terminal* term = VGA_TERMINAL_init();
VGA_TERMINAL_writeXY(term, 0, 0, "test", 10, 0);
VGA_TERMINAL_render(term);
ASSERT_STRCASEEQ("0.5.0", VGA_TERMINAL_version());
ASSERT_STRCASEEQ("0.5.1", VGA_TERMINAL_version());
VGA_TERMINAL_destroy(term);

SDL_Quit();
Expand Down

0 comments on commit 278a169

Please sign in to comment.