Browse code

Add CMake scripts in preparation for wxWidgets changes.

(One downside here, zlib's CMake script renames its zconf.h... which in turn means that the submodule now thinks there are uncommitted changes. :/)

Naram Qashat authored on 2021/03/28 19:43:33
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+cmake_minimum_required(VERSION 3.5)
2
+project(in_xsf CXX)
3
+enable_language(C)
4
+
5
+set(CMAKE_CXX_STANDARD 17)
6
+
7
+add_subdirectory(in_xsf_framework)
8
+add_subdirectory(in_2sf)
9
+add_subdirectory(in_gsf)
10
+add_subdirectory(in_ncsf)
11
+add_subdirectory(in_snsf)
12
+
13
+set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT "in_ncsf")