forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e80548e
commit 9b7d934
Showing
2 changed files
with
51 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 87309bf..23f5063 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -25,6 +25,7 @@ include(${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) | ||
include(CheckCXXSourceCompiles) | ||
|
||
# Default compiler args | ||
+if(0) | ||
if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "(GNU|.*Clang)") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Werror -Wall -Wextra -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=sign-compare -std=c++11") | ||
set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g") | ||
@@ -41,6 +42,7 @@ elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") | ||
set(CMAKE_CXX_FLAGS_RELEASE "/Ox -DNDEBUG") | ||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/Ox /Zi /FS /DEBUG") | ||
endif() | ||
+endif() | ||
|
||
# if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") | ||
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything -Wno-c++98-compat -Wno-shadow -Wno-padded -Wno-missing-noreturn -Wno-global-constructors") | ||
@@ -156,9 +158,9 @@ endif (ENTITYX_BUILD_TESTING) | ||
|
||
configure_file( | ||
${CMAKE_CURRENT_SOURCE_DIR}/entityx/config.h.in | ||
- ${CMAKE_CURRENT_SOURCE_DIR}/entityx/config.h | ||
+ ${CMAKE_CURRENT_BINARY_DIR}/entityx/config.h | ||
) | ||
- | ||
+include_directories(${CMAKE_CURRENT_BINARY_DIR}) | ||
|
||
if (NOT WINDOWS OR CYGWIN) | ||
set(entityx_libs -lentityx) | ||
@@ -179,6 +181,7 @@ install( | ||
DESTINATION "include" | ||
FILES_MATCHING PATTERN "*.h" | ||
) | ||
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/entityx/config.h DESTINATION include/entityx) | ||
|
||
install( | ||
TARGETS ${install_libs} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters