2020-03-30 13:19:35 -06:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2018-07-28 09:25:32 +03:00
|
|
|
|
2018-09-29 16:05:08 -04:00
|
|
|
project(Textractor)
|
2021-04-24 17:12:40 -06:00
|
|
|
|
|
|
|
if (NOT MSVC)
|
|
|
|
message(FATAL_ERROR "Textractor can only be built with Visual Studio")
|
|
|
|
endif()
|
|
|
|
|
2019-06-07 02:19:51 -04:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
2015-04-02 23:22:52 +09:00
|
|
|
|
|
|
|
add_compile_options(
|
2018-08-24 14:24:46 -04:00
|
|
|
/std:c++17
|
2015-04-02 23:22:52 +09:00
|
|
|
/MP
|
2018-12-21 09:34:01 -05:00
|
|
|
/wd4018 # signed/unsigned mismatch
|
2019-05-27 14:13:12 -04:00
|
|
|
/DVERSION="${VERSION}"
|
2016-01-06 00:01:17 +09:00
|
|
|
/DUNICODE # config.pri
|
|
|
|
/D_UNICODE
|
2015-04-02 23:22:52 +09:00
|
|
|
)
|
|
|
|
|
2019-01-11 16:20:57 -05:00
|
|
|
if(${CMAKE_SIZEOF_VOID_P} EQUAL 8)
|
2021-11-07 05:54:34 -07:00
|
|
|
set(CMAKE_FINAL_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/builds/${CMAKE_BUILD_TYPE}_x64)
|
|
|
|
link_directories(x64libs)
|
2018-10-19 15:55:48 -04:00
|
|
|
else()
|
2021-11-07 05:54:34 -07:00
|
|
|
set(CMAKE_FINAL_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/builds/${CMAKE_BUILD_TYPE}_x86)
|
|
|
|
link_directories(x86libs)
|
2018-10-19 15:55:48 -04:00
|
|
|
endif()
|
2019-05-24 13:30:12 -04:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY $<1:${CMAKE_FINAL_OUTPUT_DIRECTORY}>)
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY $<1:${CMAKE_FINAL_OUTPUT_DIRECTORY}>)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY $<1:${CMAKE_FINAL_OUTPUT_DIRECTORY}>)
|
2018-07-22 23:27:12 -07:00
|
|
|
|
2019-02-12 19:54:15 -05:00
|
|
|
include_directories(include)
|
2020-04-18 19:04:07 -06:00
|
|
|
add_library(pch text.cpp)
|
|
|
|
target_precompile_headers(pch PUBLIC include/common.h)
|
|
|
|
|
2019-08-06 11:41:49 -04:00
|
|
|
file(GLOB ASSETS assets/*)
|
|
|
|
file(COPY ${ASSETS} DESTINATION ${CMAKE_FINAL_OUTPUT_DIRECTORY})
|
2019-02-12 19:54:15 -05:00
|
|
|
|
2019-02-01 16:56:10 -05:00
|
|
|
add_library(text text.cpp)
|
2019-05-24 13:30:12 -04:00
|
|
|
target_compile_definitions(text PRIVATE ${TEXT_LANGUAGE})
|
2019-02-01 16:56:10 -05:00
|
|
|
link_libraries(text)
|
|
|
|
|
2018-07-28 09:25:32 +03:00
|
|
|
add_subdirectory(GUI)
|
2019-03-13 11:54:19 -04:00
|
|
|
add_subdirectory(texthook)
|
2018-08-19 00:13:19 -04:00
|
|
|
add_subdirectory(extensions)
|
2019-06-10 22:23:06 -04:00
|
|
|
add_subdirectory(test)
|
2019-07-20 16:50:33 -04:00
|
|
|
if (DEFINED VERSION)
|
2021-11-07 05:54:34 -07:00
|
|
|
add_subdirectory(GUI/host)
|
2019-07-20 16:50:33 -04:00
|
|
|
endif()
|
2020-03-30 13:19:35 -06:00
|
|
|
#add_subdirectory(GUI/host)
|