Skip to content

Commit

Permalink
[NOBIN] Updated CMake version
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Aug 10, 2022
1 parent cd2842f commit a9bed18
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required ( VERSION 2.8 )
cmake_minimum_required ( VERSION 3.0 )

project ( exe_to_dll_proj )

Expand All @@ -9,7 +9,7 @@ set ( M_PARSER "libpeconv/libpeconv" )
# modules paths:
set (PECONV_DIR "${CMAKE_SOURCE_DIR}/${M_PARSER}" CACHE PATH "PEConv main path")
add_subdirectory ( ${PECONV_DIR} )
set ( PECONV_LIB $<TARGET_FILE:libpeconv> CACHE FILE "PEConvLib library path" )
set ( PECONV_LIB $<TARGET_FILE:libpeconv> CACHE PATH "PEConvLib library path" )

# Add sub-directories
#
Expand Down
2 changes: 1 addition & 1 deletion exe_to_dll/CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.8)
cmake_minimum_required (VERSION 3.0)

project ( exe_to_dll )

Expand Down
2 changes: 1 addition & 1 deletion testload/CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.8)
cmake_minimum_required (VERSION 3.0)

project ( testload )

Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.8)
cmake_minimum_required (VERSION 3.0)
project (tests)

set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_case1/CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.8)
cmake_minimum_required (VERSION 3.0)
project (test_case1)

set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
Expand Down

0 comments on commit a9bed18

Please sign in to comment.