diff --git a/CMakeLists.txt b/CMakeLists.txt index b09514e1..31afdbd8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,4 +54,4 @@ if(PLUGIN_DEVEL) else() # Include Module library add_subdirectory(module) -end() \ No newline at end of file +endif() \ No newline at end of file diff --git a/sdk/CMakeLists.txt b/sdk/CMakeLists.txt index 2d6ac8c2..7b24711f 100644 --- a/sdk/CMakeLists.txt +++ b/sdk/CMakeLists.txt @@ -19,4 +19,4 @@ target_link_libraries(SqSDK PRIVATE VCMP SquirrelAPI) # Switch to plugin-development mode if(PLUGIN_DEVEL) target_compile_definitions(SqSDK PUBLIC SQMOD_PLUGIN_API=1) -end() \ No newline at end of file +endif() \ No newline at end of file diff --git a/sqrat/CMakeLists.txt b/sqrat/CMakeLists.txt index f52c7f2f..19a72516 100644 --- a/sqrat/CMakeLists.txt +++ b/sqrat/CMakeLists.txt @@ -25,7 +25,7 @@ target_compile_definitions(Sqrat PUBLIC SCRAT_USE_EXCEPTIONS=1 SCRAT_USE_CXX11_O # Switch to plugin-development mode if(PLUGIN_DEVEL) target_compile_definitions(Sqrat PUBLIC SQMOD_PLUGIN_API=1) -end() +endif() # Set specific compiler options if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") #target_compile_options(Sqrat PRIVATE -w diff --git a/squirrel/CMakeLists.txt b/squirrel/CMakeLists.txt index 799fa88b..af3d9fd1 100644 --- a/squirrel/CMakeLists.txt +++ b/squirrel/CMakeLists.txt @@ -74,4 +74,4 @@ target_include_directories(SquirrelAPI INTERFACE ${CMAKE_CURRENT_LIST_DIR}/inclu # Switch to plugin-development mode if(PLUGIN_DEVEL) target_compile_definitions(SquirrelAPI PUBLIC SQMOD_PLUGIN_API=1) -end() \ No newline at end of file +endif() \ No newline at end of file