Merge pull request #13 from enduro2d/hotfix/update_modules

Hotfix/update modules
This commit is contained in:
2019-05-18 18:11:16 +07:00
committed by GitHub
4 changed files with 8 additions and 15 deletions

3
.gitignore vendored
View File

@@ -1,2 +1,5 @@
.vs/*
.vscode/*
build/*
CMakeSettings.json
CMakeLists.txt.user

View File

@@ -49,13 +49,5 @@ source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES
# project executable
#
add_executable(${PROJECT_NAME}
${PROJECT_SOURCES})
target_link_libraries(${PROJECT_NAME}
${E2D_LIBRARIES})
target_include_directories(${PROJECT_NAME}
PRIVATE ${E2D_INCLUDE_DIRS})
set_target_properties(${PROJECT_NAME} PROPERTIES
CXX_STANDARD 14
CXX_STANDARD_REQUIRED YES
CXX_EXTENSIONS NO)
add_executable(${PROJECT_NAME} ${PROJECT_SOURCES})
target_link_libraries(${PROJECT_NAME} enduro2d)

View File

@@ -1,5 +1,3 @@
#!/bin/bash
git submodule init
git submodule update
git pull --recurse-submodules
git submodule update --init --remote --recursive
git submodule update --init --recursive
git submodule update --remote