Skip to content

Commit

Permalink
CMake: include 3rdparty just before src
Browse files Browse the repository at this point in the history
git-svn-id: http://eathena-project.googlecode.com/svn/trunk@15092 54d463be-8e91-2dee-dedb-b68131a5f0ec
  • Loading branch information
flaviojs committed May 11, 2012
1 parent 87443dd commit d9ce332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion 3rdparty/CMakeLists.txt
Expand Up @@ -47,7 +47,6 @@ macro( CONFIGURE_WITH_LOCAL_OR_SYSTEM name )
endmacro( CONFIGURE_WITH_LOCAL_OR_SYSTEM ) endmacro( CONFIGURE_WITH_LOCAL_OR_SYSTEM )




set( CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake CACHE INTERNAL "" )
add_subdirectory( msinttypes ) add_subdirectory( msinttypes )
add_subdirectory( mt19937ar ) add_subdirectory( mt19937ar )
add_subdirectory( mysql ) add_subdirectory( mysql )
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Expand Up @@ -70,7 +70,7 @@ endif()
# #
# 3rd party # 3rd party
# #
add_subdirectory( 3rdparty ) set( CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/cmake CACHE INTERNAL "" )
include( CheckCSourceCompiles ) include( CheckCSourceCompiles )
include( CheckCSourceRuns ) include( CheckCSourceRuns )
include( CheckIncludeFile ) include( CheckIncludeFile )
Expand Down Expand Up @@ -570,6 +570,7 @@ endif( INSTALL_COMPONENT_RUNTIME )
# sources # sources
# #
set( TARGET_LIST CACHE INTERNAL "" ) set( TARGET_LIST CACHE INTERNAL "" )
add_subdirectory( 3rdparty )
add_subdirectory( src ) add_subdirectory( src )




Expand Down

0 comments on commit d9ce332

Please sign in to comment.