Skip to content

Commit

Permalink
LANGUAGES CXX を指定する
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tmatma committed Sep 5, 2018
1 parent 83a893c commit d0f11da
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 2.6.4)

project (SakuraEditor)
project (SakuraEditor LANGUAGES CXX)

set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
Expand Down
2 changes: 1 addition & 1 deletion HeaderMake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 2.6.4)
set( project_name HeaderMake)

# define a project name
project (${project_name})
project (${project_name} LANGUAGES CXX)

# define a variable SOURCE_FILES with file GLOB
file(GLOB SOURCE_FILES *.cpp *.h)
Expand Down
2 changes: 1 addition & 1 deletion MakefileMake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 2.6.4)
set( project_name MakefileMake)

# define a project name
project (${project_name})
project (${project_name} LANGUAGES CXX)

# define a variable SOURCE_FILES with file GLOB
file(GLOB SOURCE_FILES *.cpp *.h)
Expand Down
2 changes: 1 addition & 1 deletion sakura_core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.0.2)
set(project_name sakura)

# define a project name
project (${project_name})
project (${project_name} LANGUAGES CXX)

# set the project as the startup project
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${project_name})
Expand Down
2 changes: 1 addition & 1 deletion sakura_lang_en_US/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 2.6.4)
set(project_name sakura_lang_en_US)

# define a project name
project (${project_name})
project (${project_name} LANGUAGES CXX)

include_directories(./)

Expand Down

0 comments on commit d0f11da

Please sign in to comment.