mirror of https://github.com/dnomd343/klotski.git
Dnomd343
2 years ago
62 changed files with 29 additions and 25 deletions
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(all_cases OBJECT all_cases.cc basic_ranges.cc) |
|||
#target_link_libraries(all_cases PUBLIC utils) |
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(analyse OBJECT analyse.cc backtrack.cc) |
|||
#target_link_libraries(analyse PUBLIC core) |
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(benchmark OBJECT chore.cc benchmark.cc) |
|||
#target_link_libraries(benchmark PUBLIC all_cases) |
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(common_code OBJECT convert.cc serialize.cc common_code.cc) |
|||
#target_link_libraries(common_code PUBLIC utils) |
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(fast_cal OBJECT cal_core.cc fast_cal.cc) |
|||
#target_link_libraries(fast_cal PUBLIC core) |
@ -1,4 +1,3 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
add_library(raw_code OBJECT convert.cc raw_code.cc) |
|||
#target_link_libraries(raw_code PUBLIC utils) |
@ -1,9 +1,9 @@ |
|||
#pragma once |
|||
|
|||
#define VERSION_MAJOR (@klotski-core_VERSION_MAJOR@) |
|||
#define VERSION_MINOR (@klotski-core_VERSION_MINOR@) |
|||
#define VERSION_PATCH (@klotski-core_VERSION_PATCH@) |
|||
#define VERSION_STR "v@klotski-core_VERSION_MAJOR@.@klotski-core_VERSION_MINOR@.@klotski-core_VERSION_PATCH@" |
|||
#define VERSION_MAJOR (@VERSION_MAJOR@) |
|||
#define VERSION_MINOR (@VERSION_MINOR@) |
|||
#define VERSION_PATCH (@VERSION_PATCH@) |
|||
#define VERSION_STR "v@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@" |
|||
|
|||
#define AUTHOR "dnomd343" |
|||
#define SYSTEM "@SYSTEM_INFO@" |
@ -1,3 +1,3 @@ |
|||
#pragma once |
|||
|
|||
#include "../klotski/ffi/klotski.h" |
|||
#include "../klotski_core/klotski.h" |
|||
|
Loading…
Reference in new issue